Skip to content

Commit

Permalink
Bump nim dependency to 1.6.0, expand readme.md (#44)
Browse files Browse the repository at this point in the history
* Bump nim dependency to 1.6.0, expand `readme.md`

* Bump version to 0.2.0
  • Loading branch information
ZoomRmc authored Aug 30, 2023
1 parent e9d5058 commit b692590
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
11 changes: 10 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -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.
6 changes: 3 additions & 3 deletions threading.nimble
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit b692590

Please sign in to comment.