Skip to content

Commit

Permalink
Fix missing release of feattle-core. Also release feattle-sync
Browse files Browse the repository at this point in the history
  • Loading branch information
sitegui committed May 8, 2021
1 parent b110b4b commit ce857a1
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 10 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,35 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [feattle 0.6.0] - 2021-05-08

### Changed
- Update `feattle-core` to 0.6.0
- Update `feattle-sync` to 0.6.0
- Update `feattle-ui` to 0.6.0
- Minimum supported Rust version is now 1.48

## [feattle-core 0.6.0] - 2021-05-08

### Added
- Implement `serde::Serialize` for `LastReload`

### Changed
- Minimum supported Rust version is now 1.48

## [feattle-sync 0.6.0] - 2021-03-23

### Changed
- Minimum supported Rust version is now 1.48
- Update `feattle-core` to 0.6.0

## [feattle-ui 0.6.0] - 2021-05-08

### Added
- Add new methods in `AdminPanel` (`list_feattles_api_v1()`, `show_feattle_api_v1()` and `edit_feattle_api_v1()`) adding
access to a lower-level API
- Expose new methods in `warp` as a JSON API under `/api/v1/`

### Changed
- Minimum supported Rust version is now 1.48
- Update `feattle-core` to 0.6.0

## [feattle 0.5.0] - 2021-03-23

Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions feattle-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "feattle-core"
version = "0.5.0"
version = "0.6.0"
authors = ["Guilherme Souza <sitegui@sitegui.com.br>"]
edition = "2018"
description = "Featture toggles for Rust, extensible and with background synchronization and administration UI"
Expand All @@ -26,4 +26,4 @@ uuid = { version = "0.8.1", optional = true }
tokio = { version = "1.4.0", features = ["macros", "rt"] }

[package.metadata.docs.rs]
all-features = true
all-features = true
6 changes: 3 additions & 3 deletions feattle-sync/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "feattle-sync"
version = "0.5.0"
version = "0.6.0"
authors = ["Guilherme Souza <sitegui@sitegui.com.br>"]
edition = "2018"
description = "Featture toggles for Rust, extensible and with background synchronization and administration UI"
Expand All @@ -17,7 +17,7 @@ s3 = ["rusoto_core", "rusoto_s3"]

[dependencies]
async-trait = "0.1.40"
feattle-core = { path = "../feattle-core", version = "0.5.0" }
feattle-core = { path = "../feattle-core", version = "0.6.0" }
log = "0.4.11"
rusoto_core = { version = "0.46.0", optional = true }
rusoto_s3 = { version = "0.46.0", optional = true }
Expand All @@ -34,4 +34,4 @@ tempfile = "3.1.0"
tokio = { version = "1.4.0", features = ["macros", "rt", "test-util"] }

[package.metadata.docs.rs]
all-features = true
all-features = true
2 changes: 1 addition & 1 deletion feattle-ui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ categories = ["config", "data-structures", "development-tools", "web-programming

[dependencies]
chrono = { version = "0.4.15", features = ["serde"] }
feattle-core = { path = "../feattle-core", version = "0.5.0" }
feattle-core = { path = "../feattle-core", version = "0.6.0" }
futures = "0.3.5"
handlebars = "3.4.0"
log = "0.4.11"
Expand Down
4 changes: 2 additions & 2 deletions feattle/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ uuid = ["feattle-core/uuid"]
warp = ["feattle-ui/warp"]

[dependencies]
feattle-core = { path = "../feattle-core", version = "0.5.0" }
feattle-sync = { path = "../feattle-sync", version = "0.5.0" }
feattle-core = { path = "../feattle-core", version = "0.6.0" }
feattle-sync = { path = "../feattle-sync", version = "0.6.0" }
feattle-ui = { path = "../feattle-ui", version = "0.6.0" }

[dev-dependencies]
Expand Down

0 comments on commit ce857a1

Please sign in to comment.