Skip to content

Commit

Permalink
Bump version to 0.2.0-alpha.1
Browse files Browse the repository at this point in the history
The main new feature is the new API for enums
and tagged unions.

This is an alpha release, because procedural
derive can't automatically derive the enum
representations yet.
  • Loading branch information
Techcable committed Aug 6, 2021
1 parent 09f31e8 commit ae80c75
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
4 changes: 1 addition & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "static-reflect"
version = "0.1.9"
version = "0.2.0-alpha.1"
edition = "2018"
description = "Static type information, giving a form of compile-time reflection"
license = "MIT"
Expand All @@ -11,8 +11,6 @@ readme = "README.md"
# Optional: Support for zerogc
zerogc = { version = "0.2.0-alpha.4", optional = true }
zerogc-derive = { version = "0.2.0-alpha.4", optional = true }
# Optional: Support for numeric traits
num-traits = { version = "0.2.14", optional = true }

[features]
default = ["never", "builtins"]
Expand Down
4 changes: 2 additions & 2 deletions lib/derive-internals/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "static-reflect-derive-internals"
version = "0.1.0"
version = "0.2.0-alpha.1"
edition = "2018"
license = "MIT"
description = "The internal implementation of procedural derive for `static-reflect`"
repository = "https://github.com/DuckLogic/rust-static-reflect"

[dependencies]
itertools = "0.9.0"
itertools = "0.10.0"
proc-macro2 = "^1"
quote = "^1"
indexmap = "1.6"
Expand Down
6 changes: 3 additions & 3 deletions lib/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "static-reflect-derive"
description = "Procedural derive for static-reflect"
version = "0.1.7"
version = "0.2.0-alpha.1"
edition = "2018"
license = "MIT"
repository = "https://github.com/DuckLogic/rust-static-reflect"
Expand All @@ -16,10 +16,10 @@ syn = "1"

# Actual implementation
[dependencies.static-reflect-derive-internals]
version = "0.1.0"
version = "0.2.0-alpha.1"
path = "../derive-internals"

[dev-dependencies]
# Testing
static-reflect = { version = "0.1.0", path = "../.." }
static-reflect = { version = "0.2.0-alpha.1", path = "../.." }
pretty_assertions = "0.7.2"

0 comments on commit ae80c75

Please sign in to comment.