Skip to content

Commit 56d9844

Browse files
committed
Preparing for v0.7.0 release
Signed-off-by: Abhijit Gadgil <[email protected]>
1 parent 632d1a0 commit 56d9844

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

asn-compiler/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "asn1-compiler"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
authors = ["Abhijit Gadgil <[email protected]>"]
55
edition = "2018"
66
description = "ASN.1 Toolkit in Rust. Compiler for ASN.1 specification, ASN.1 codecs and derive macros for ASN.1 Codecs."

codecs/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "asn1-codecs"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
description = "ASN.1 Codecs for Rust Types representing ASN.1 Types."
55
authors = ["Abhijit Gadgil <[email protected]>"]
66
keywords = ["asn1", "per", "decoder", "encoder"]

codecs_derive/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "asn1_codecs_derive"
33
authors = ["Abhijit Gadgil <[email protected]>"]
44
description = "ASN.1 Codecs derive Macros"
55
keywords = ["asn1", "per"]
6-
version = "0.6.1"
6+
version = "0.7.0"
77
edition = "2018"
88
license = "Apache-2.0 OR MIT"
99
repository = "https://github.com/gabhijit/hampi.git"
@@ -18,7 +18,7 @@ proc-macro = true
1818

1919
[dependencies]
2020
log = { version = "0.4" }
21-
asn1-codecs = { path = "../codecs" , version = "=0.6.1"}
21+
asn1-codecs = { path = "../codecs" , version = "=0.7.0"}
2222
bitvec = { version = "1.0" }
2323
proc-macro2 = { version = "1.0" }
2424
quote = { version = "1.0" }

examples/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
[package]
22
name = "hampi-examples"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
authors = ["Abhijit Gadgil <[email protected]>"]
55
edition = "2018"
66
description = "Examples for usage of ASN.1 Compiler and Codecs."
77
license = "Apache-2.0 OR MIT"
88
publish = false
99

1010
[build-dependencies]
11-
asn1-compiler = { path = "../asn-compiler", version = "=0.6.1" }
11+
asn1-compiler = { path = "../asn-compiler", version = "=0.7.0" }
1212

1313
[dev-dependencies]
14-
asn1-codecs = { path = "../codecs", version = "=0.6.1" }
15-
asn1_codecs_derive = { path = "../codecs_derive", version = "=0.6.1" }
14+
asn1-codecs = { path = "../codecs", version = "=0.7.0" }
15+
asn1_codecs_derive = { path = "../codecs_derive", version = "=0.7.0" }
1616
trybuild = { version = "1.0" }
1717
hex = { version = "0.4" }
1818
bitvec = { version = "1.0" , features = ["serde"]}

0 commit comments

Comments
 (0)