Skip to content

Commit ae80c75

Browse files
committed
Bump version to 0.2.0-alpha.1
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.
1 parent 09f31e8 commit ae80c75

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

Cargo.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "static-reflect"
3-
version = "0.1.9"
3+
version = "0.2.0-alpha.1"
44
edition = "2018"
55
description = "Static type information, giving a form of compile-time reflection"
66
license = "MIT"
@@ -11,8 +11,6 @@ readme = "README.md"
1111
# Optional: Support for zerogc
1212
zerogc = { version = "0.2.0-alpha.4", optional = true }
1313
zerogc-derive = { version = "0.2.0-alpha.4", optional = true }
14-
# Optional: Support for numeric traits
15-
num-traits = { version = "0.2.14", optional = true }
1614

1715
[features]
1816
default = ["never", "builtins"]

lib/derive-internals/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "static-reflect-derive-internals"
3-
version = "0.1.0"
3+
version = "0.2.0-alpha.1"
44
edition = "2018"
55
license = "MIT"
66
description = "The internal implementation of procedural derive for `static-reflect`"
77
repository = "https://github.com/DuckLogic/rust-static-reflect"
88

99
[dependencies]
10-
itertools = "0.9.0"
10+
itertools = "0.10.0"
1111
proc-macro2 = "^1"
1212
quote = "^1"
1313
indexmap = "1.6"

lib/derive/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "static-reflect-derive"
33
description = "Procedural derive for static-reflect"
4-
version = "0.1.7"
4+
version = "0.2.0-alpha.1"
55
edition = "2018"
66
license = "MIT"
77
repository = "https://github.com/DuckLogic/rust-static-reflect"
@@ -16,10 +16,10 @@ syn = "1"
1616

1717
# Actual implementation
1818
[dependencies.static-reflect-derive-internals]
19-
version = "0.1.0"
19+
version = "0.2.0-alpha.1"
2020
path = "../derive-internals"
2121

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

0 commit comments

Comments
 (0)