Skip to content

Commit

Permalink
release: 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-auer committed Dec 21, 2017
1 parent 613f938 commit df08fef
Show file tree
Hide file tree
Showing 9 changed files with 32 additions and 32 deletions.
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "symbolic"
version = "1.1.5"
version = "2.0.0"
license = "MIT"
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>",
Expand All @@ -23,10 +23,10 @@ exclude = [
[workspace]

[dependencies]
symbolic-common = { version = "1.1.5", path = "common" }
symbolic-demangle = { version = "1.1.5", path = "demangle" }
symbolic-minidump = { version = "1.1.5", path = "minidump" }
symbolic-proguard = { version = "1.1.5", path = "proguard" }
symbolic-sourcemap = { version = "1.1.5", path = "sourcemap" }
symbolic-symcache = { version = "1.1.5", path = "symcache" }
symbolic-debuginfo = { version = "1.1.5", path = "debuginfo" }
symbolic-common = { version = "2.0.0", path = "common" }
symbolic-demangle = { version = "2.0.0", path = "demangle" }
symbolic-minidump = { version = "2.0.0", path = "minidump" }
symbolic-proguard = { version = "2.0.0", path = "proguard" }
symbolic-sourcemap = { version = "2.0.0", path = "sourcemap" }
symbolic-symcache = { version = "2.0.0", path = "symcache" }
symbolic-debuginfo = { version = "2.0.0", path = "debuginfo" }
16 changes: 8 additions & 8 deletions cabi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "symbolic-cabi"
version = "1.1.5"
version = "2.0.0"
license = "MIT"
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>",
Expand All @@ -27,10 +27,10 @@ lto = true
[dependencies]
uuid = "0"
backtrace = "0"
symbolic-common = { version = "1.1.5", path = "../common", features = ["with_dwarf", "with_objects", "with_sourcemaps"] }
symbolic-demangle = { version = "1.1.5", path = "../demangle" }
symbolic-debuginfo = { version = "1.1.5", path = "../debuginfo" }
symbolic-symcache = { version = "1.1.5", path = "../symcache" }
symbolic-sourcemap = { version = "1.1.5", path = "../sourcemap" }
symbolic-proguard = { version = "1.1.5", path = "../proguard" }
symbolic-minidump = { version = "1.1.5", path = "../minidump" }
symbolic-common = { version = "2.0.0", path = "../common", features = ["with_dwarf", "with_objects", "with_sourcemaps"] }
symbolic-demangle = { version = "2.0.0", path = "../demangle" }
symbolic-debuginfo = { version = "2.0.0", path = "../debuginfo" }
symbolic-symcache = { version = "2.0.0", path = "../symcache" }
symbolic-sourcemap = { version = "2.0.0", path = "../sourcemap" }
symbolic-proguard = { version = "2.0.0", path = "../proguard" }
symbolic-minidump = { version = "2.0.0", path = "../minidump" }
2 changes: 1 addition & 1 deletion common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "symbolic-common"
version = "1.1.5"
version = "2.0.0"
license = "MIT"
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>",
Expand Down
4 changes: 2 additions & 2 deletions debuginfo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "symbolic-debuginfo"
version = "1.1.5"
version = "2.0.0"
license = "MIT"
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>",
Expand All @@ -23,4 +23,4 @@ memmap = "0.5"
regex = "0.2"
scroll = "0.8"
uuid = "0.5"
symbolic-common = { path = "../common", version = "1.1.5", features = ["with_objects", "with_dwarf"] }
symbolic-common = { path = "../common", version = "2.0.0", features = ["with_objects", "with_dwarf"] }
4 changes: 2 additions & 2 deletions demangle/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "symbolic-demangle"
version = "1.1.5"
version = "2.0.0"
license = "MIT"
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>",
Expand All @@ -15,7 +15,7 @@ A library to demangle symbols from various languages and compilers.
build = "build.rs"

[dependencies]
symbolic-common = { version = "1.1.5", path = "../common" }
symbolic-common = { version = "2.0.0", path = "../common" }
rustc-demangle = "0.1"

[build-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions minidump/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "symbolic-minidump"
version = "1.1.5"
version = "2.0.0"
license = "MIT"
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>",
Expand All @@ -17,8 +17,8 @@ build = "build.rs"
[dependencies]
gimli = "0.15"
goblin = "0.0"
symbolic-common = { version = "1.1.5", path = "../common" }
symbolic-debuginfo = { version = "1.1.5", path = "../debuginfo" }
symbolic-common = { version = "2.0.0", path = "../common" }
symbolic-debuginfo = { version = "2.0.0", path = "../debuginfo" }
uuid = { version = "0.5", features = ["use_std"] }

[build-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions proguard/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "symbolic-proguard"
version = "1.1.5"
version = "2.0.0"
license = "MIT"
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>",
Expand All @@ -15,6 +15,6 @@ optimized applications.
"""

[dependencies]
symbolic-common = { version = "1.1.5", path = "../common" }
symbolic-common = { version = "2.0.0", path = "../common" }
proguard = "1.0.0"
uuid = "0"
4 changes: 2 additions & 2 deletions sourcemap/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "symbolic-sourcemap"
version = "1.1.5"
version = "2.0.0"
license = "MIT"
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>",
Expand All @@ -15,5 +15,5 @@ source code or stack traces.
"""

[dependencies]
symbolic-common = { version = "1.1.5", path = "../common", features = ["with_sourcemaps"] }
symbolic-common = { version = "2.0.0", path = "../common", features = ["with_sourcemaps"] }
sourcemap = "2.2"
8 changes: 4 additions & 4 deletions symcache/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "symbolic-symcache"
version = "1.1.5"
version = "2.0.0"
license = "MIT"
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>",
Expand All @@ -15,9 +15,9 @@ stack frames in debugging information.
"""

[dependencies]
symbolic-common = { version = "1.1.5", path = "../common", features = ["with_dwarf", "with_objects"] }
symbolic-debuginfo = { version = "1.1.5", path = "../debuginfo" }
symbolic-demangle = { version = "1.1.5", path = "../demangle" }
symbolic-common = { version = "2.0.0", path = "../common", features = ["with_dwarf", "with_objects"] }
symbolic-debuginfo = { version = "2.0.0", path = "../debuginfo" }
symbolic-demangle = { version = "2.0.0", path = "../demangle" }
uuid = { version = "^0.5", features = ["serde"] }
gimli = "0.15"
fallible-iterator = "0.1"
Expand Down

0 comments on commit df08fef

Please sign in to comment.