Skip to content

Commit

Permalink
Release 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ia0 committed Nov 18, 2017
1 parent 8296dec commit b6b1763
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions lib/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Changelog

## 2.1.0

### Minor

- Accept duplicate but identical value specification
Expand All @@ -8,6 +10,7 @@

### Patch

- Expose internal methods for `data-encoding-macro-internal`
- Include LICENSE file in cargo package

## 2.0.0
Expand Down
2 changes: 1 addition & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "data-encoding"
version = "2.0.0"
version = "2.1.0"
authors = ["Julien Cretin <git@ia0.eu>"]
license = "MIT"
keywords = ["base-conversion", "encoding", "base64", "base32", "hex"]
Expand Down
2 changes: 1 addition & 1 deletion lib/macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ default = ["stable"]
stable = ["data-encoding-macro-internal/stable", "proc-macro-hack"]

[dependencies]
data-encoding = { version = "2.0.0", path = ".." }
data-encoding = { version = "2.1.0", path = ".." }
data-encoding-macro-internal = { version = "0.1.0", path = "internal" }
proc-macro-hack = { version = "0.4.0", optional = true }
5 changes: 3 additions & 2 deletions lib/macro/internal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ name = "data-encoding-macro-internal"
version = "0.1.0"
authors = ["Julien Cretin <cretin@google.com>"]
license = "MIT"
readme = "README.md"
description = "Internal library for data-encoding-macro"
readme = "README.md"
repository = "https://github.com/ia0/data-encoding"
include = ["Cargo.toml", "LICENSE", "README.md", "src/lib.rs"]

[lib]
Expand All @@ -14,6 +15,6 @@ proc-macro = true
stable = ["proc-macro-hack"]

[dependencies]
data-encoding = { version = "2.0.0", path = "../.." }
data-encoding = { version = "2.1.0", path = "../.." }
proc-macro-hack = { version = "0.4.0", optional = true }
syn = "0.11.11"

0 comments on commit b6b1763

Please sign in to comment.