From b692590d6895b3acb17fc0c95f5c61bf37555c36 Mon Sep 17 00:00:00 2001 From: Zoom Date: Wed, 30 Aug 2023 15:53:31 +0000 Subject: [PATCH] Bump nim dependency to 1.6.0, expand `readme.md` (#44) * Bump nim dependency to 1.6.0, expand `readme.md` * Bump version to 0.2.0 --- readme.md | 11 ++++++++++- threading.nimble | 6 +++--- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/readme.md b/readme.md index 312d8ec..ef70b0f 100644 --- a/readme.md +++ b/readme.md @@ -1,2 +1,11 @@ # threading -New atomics, thread primitives, channels and atomic refcounting for --gc:arc/orc. Documentation: https://nim-lang.github.io/threading. + +New threading primitives for Nim's `arc`/`orc` memory management modes: atomics, channels, smart pointers and wait groups. + +## Documentation + +> These modules require `--mm:arc` or `--mm:orc`! + +Documentation: https://nim-lang.github.io/threading + +See [tests/](./tests/) for some usage examples. diff --git a/threading.nimble b/threading.nimble index be984f0..921c456 100644 --- a/threading.nimble +++ b/threading.nimble @@ -1,10 +1,10 @@ # Package -version = "0.1.0" +version = "0.2.0" author = "Araq" -description = "New atomics, thread primitives, channels and atomic refcounting for --gc:arc/orc." +description = "New threading primitives for --mm:arc/orc: atomics, channels, smart pointers and wait groups." license = "MIT" # Dependencies -requires "nim >= 1.4.6" +requires "nim >= 1.6.0"