Skip to content

Commit

Permalink
(cargo-release) version 12.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bodil committed Aug 30, 2018
1 parent 6fdaec5 commit 2ee52ff
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,15 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic
Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [12.0.0] - 2018-08-30

Starting with this release, the `arc` flag is gone, in favour of publishing `im`
as two separate crates: `im` (using `Arc`) and `im-rc` (using `Rc`). They're
identical (and built from the same code), except that `im` is thread safe and
`im-rc` is a little bit more performant.

This is a major release as a consequence, but there should be no breaking code
changes other than the new default choice of reference counter.

### Added
- The `Chunk` datatype that's used to build `Vector` and `OrdMap` has been
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "im"
version = "11.0.1"
version = "12.0.0"
authors = ["Bodil Stokke <bodil@bodil.org>"]
license = "MPL-2.0+"
description = "Immutable collection datatypes"
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
11.0.1
12.0.0
2 changes: 1 addition & 1 deletion rc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "im-rc"
version = "11.0.1"
version = "12.0.0"
authors = ["Bodil Stokke <bodil@bodil.org>"]
license = "MPL-2.0+"
description = "Immutable collection datatypes (the fast but not thread safe version)"
Expand Down

0 comments on commit 2ee52ff

Please sign in to comment.