Skip to content

Commit

Permalink
Merge pull request #98 from iqlusioninc/v0.2.0
Browse files Browse the repository at this point in the history
v0.2.0
  • Loading branch information
tony-iqlusion authored Jul 17, 2019
2 parents 530311f + bd41a7a commit aaabed2
Show file tree
Hide file tree
Showing 8 changed files with 37 additions and 14 deletions.
23 changes: 23 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## [0.2.0] (2019-07-16)

- Merge `abscissa_generator` into `abscissa` CLI crate ([#95])
- Rename `abscissa` crate to `abscissa_core` ([#94])
- generator: Remove `hashbrown` dependency ([#93])
- testing: Add Regex newtype ([#91])
- config: Mandate `Default` bound + testing support ([#84], [#90])
- generator: Add `serde(deny_unknown_fields)` ([#88])
- generator: Add config filename boilerplate to template ([#82])
- Configuration loading improvements ([#81])
- Refactor and improve `abscissa::testing` ([#78])

## [0.1.0] (2019-07-02)

- components: Add basic downcasting support ([#72])
Expand Down Expand Up @@ -57,6 +69,17 @@

- Initial release

[0.2.0]: https://github.com/iqlusioninc/abscissa/pull/96
[#95]: https://github.com/iqlusioninc/abscissa/pull/95
[#94]: https://github.com/iqlusioninc/abscissa/pull/94
[#93]: https://github.com/iqlusioninc/abscissa/pull/93
[#91]: https://github.com/iqlusioninc/abscissa/pull/91
[#84]: https://github.com/iqlusioninc/abscissa/pull/84
[#90]: https://github.com/iqlusioninc/abscissa/pull/90
[#88]: https://github.com/iqlusioninc/abscissa/pull/88
[#82]: https://github.com/iqlusioninc/abscissa/pull/82
[#81]: https://github.com/iqlusioninc/abscissa/pull/81
[#78]: https://github.com/iqlusioninc/abscissa/pull/78
[0.1.0]: https://github.com/iqlusioninc/abscissa/pull/77
[#72]: https://github.com/iqlusioninc/abscissa/pull/72
[#71]: https://github.com/iqlusioninc/abscissa/pull/71
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = """
configuration, error handling, logging, and terminal interactions.
This crate contains a CLI utility for generating new applications.
"""
version = "0.2.0-rc.1" # Also update html_root_url in lib.rs when bumping this
version = "0.2.0" # Also update html_root_url in lib.rs when bumping this
license = "Apache-2.0"
authors = ["Tony Arcieri <[email protected]>"]
edition = "2018"
Expand All @@ -27,10 +27,10 @@ lazy_static = "1"
serde = { version = "1", features = ["serde_derive"] }

[dependencies.abscissa_core]
version = "0.2.0-rc.1"
version = "0.2.0"
path = "../core"

[dev-dependencies.abscissa_core]
version = "0.2.0-rc.1"
version = "0.2.0"
features = ["testing"]
path = "../core"
2 changes: 1 addition & 1 deletion cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#![forbid(unsafe_code)]
#![doc(
html_logo_url = "https://www.iqlusion.io/img/github/iqlusioninc/abscissa/abscissa-sq.svg",
html_root_url = "https://docs.rs/abscissa_core/0.2.0-rc.1"
html_root_url = "https://docs.rs/abscissa_core/0.2.0"
)]

pub mod application;
Expand Down
4 changes: 2 additions & 2 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = """
configuration, error handling, logging, and terminal interactions.
This crate contains the framework's core functionality.
"""
version = "0.2.0-rc.1" # Also update html_root_url in lib.rs when bumping this
version = "0.2.0" # Also update html_root_url in lib.rs when bumping this
license = "Apache-2.0"
authors = ["Tony Arcieri <[email protected]>"]
edition = "2018"
Expand All @@ -16,7 +16,7 @@ categories = ["command-line-interface", "rust-patterns"]
keywords = ["abscissa", "cli", "application", "framework", "service"]

[dependencies]
abscissa_derive = { version = "0.2.0-rc.1", path = "../derive" }
abscissa_derive = { version = "0.2.0", path = "../derive" }
canonical-path = "2"
chrono = { version = "0.4", optional = true, features = ["serde"] }
failure = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
#![forbid(unsafe_code)]
#![doc(
html_logo_url = "https://www.iqlusion.io/img/github/iqlusioninc/abscissa/abscissa-sq.svg",
html_root_url = "https://docs.rs/abscissa_core/0.2.0-rc.1"
html_root_url = "https://docs.rs/abscissa_core/0.2.0"
)]

/// Abscissa version
Expand Down
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "abscissa_derive"
description = "Custom derive support for the abscissa application microframework"
version = "0.2.0-rc.1" # Also update html_root_url in lib.rs when bumping this
version = "0.2.0" # Also update html_root_url in lib.rs when bumping this
license = "Apache-2.0"
authors = ["Tony Arcieri <[email protected]>"]
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion derive/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#![forbid(unsafe_code)]
#![doc(
html_logo_url = "https://www.iqlusion.io/img/github/iqlusioninc/abscissa/abscissa-sq.svg",
html_root_url = "https://docs.rs/abscissa_derive/0.2.0-rc.1"
html_root_url = "https://docs.rs/abscissa_derive/0.2.0"
)]

extern crate proc_macro;
Expand Down

0 comments on commit aaabed2

Please sign in to comment.