Skip to content

Commit

Permalink
bump bindgen back to 0.54 for compatibility with rocksdb (#14)
Browse files Browse the repository at this point in the history
* bump bindgen back to 0.54 for compatibility with rocksdb

* update changelog for new release

* (cargo-release) version 0.1.4

* (cargo-release) start next development iteration 0.1.5-alpha.0
  • Loading branch information
yaahc committed Nov 24, 2020
1 parent 55f1980 commit 848eb05
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased] - ReleaseDate

## [0.1.4] - 2020-11-17
### Changed
- switched from bindgen `0.55` to bindgen `0.54` to avoid a dependency
conflict with `rocksdb`

## [0.1.3] - 2020-10-09
### Changed
- Enabled endomorphism optimization
Expand All @@ -28,7 +33,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Updated `bindgen` to a non yanked version

<!-- next-url -->
[Unreleased]: https://github.com/ZcashFoundation/zcash_script/compare/v0.1.3...HEAD
[Unreleased]: https://github.com/ZcashFoundation/zcash_script/compare/v0.1.4...HEAD
[0.1.4]: https://github.com/ZcashFoundation/zcash_script/compare/v0.1.3...v0.1.4
[0.1.3]: https://github.com/ZcashFoundation/zcash_script/compare/v0.1.2...v0.1.3
[0.1.2]: https://github.com/ZcashFoundation/zcash_script/compare/v0.1.1...v0.1.2
[0.1.1]: https://github.com/ZcashFoundation/zcash_script/compare/v0.1.0...v0.1.1
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zcash_script"
version = "0.1.4-alpha.0"
version = "0.1.5-alpha.0"
authors = ["Tamas Blummer <tamas.blummer@gmail.com>", "Zcash Foundation <zebra@zfnd.org>"]
license = "Apache-2.0"
readme = "README.md"
Expand Down Expand Up @@ -55,7 +55,7 @@ blake2b_simd = "0.5.10"

[build-dependencies]
cc = { version = ">= 1.0.36, <= 1.0.41", features = ["parallel"] }
bindgen = "0.55"
bindgen = "0.54"

[dev-dependencies]
rustc-serialize = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![doc(html_logo_url = "https://www.zfnd.org/images/zebra-icon.png")]
#![doc(html_root_url = "https://docs.rs/zcash_script/0.1.3")]
#![doc(html_root_url = "https://docs.rs/zcash_script/0.1.4")]
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
Expand Down

0 comments on commit 848eb05

Please sign in to comment.