Skip to content

Commit

Permalink
Bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dpc committed Mar 6, 2019
1 parent ab67555 commit 4e1fbde
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 23 deletions.
22 changes: 11 additions & 11 deletions Cargo.lock

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

7 changes: 6 additions & 1 deletion cargo-crev/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased](https://github.com/dpc/crev/compare/cargo-crev-v0.4.0...HEAD)
## [Unreleased](https://github.com/dpc/crev/compare/cargo-crev-v0.5.0...HEAD)

## [0.5.0](https://github.com/dpc/crev/compare/cargo-crev-v0.4.0...cargo-crev-v0.5.0) - 2019-03-06
### Added

- `unsafe` counts via `geiger` crate

## [0.4.0](https://github.com/dpc/crev/compare/cargo-crev-v0.3.0...cargo-crev-v0.4.0) - 2019-01-12
### Added

- This `CHANGELOG.md` file.
- `LICENSE` files
- Ability to work without an Id for most commands.
Expand All @@ -28,6 +31,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `update` command.

### Changed

- Windows cache folder changed from `%AppData%\Local\Dawid Ci,281,,380,arkiewicz\crev` to `%AppData%\Local\crev`.
- Windows config folder changed from `%AppData%\Roaming\Dawid Ci,281,,380,arkiewicz\crev` to `%AppData%\Roaming\crev`.
- MacOS config folder changed from `$HOME/Library/Application Support/crev` to `$HOME/Library/Preferences/crev`.
Expand All @@ -41,6 +45,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Hardcode dpc's proof-repo url on `fetch all` to help bootstrap the ecosystem.

### Fixed

- Fix `$EDITOR`/`$VISUAL` handling, especially on Windows
- Save `lanes` in `LockedId`. Old Ids need to be fixed manually.

Expand Down
8 changes: 4 additions & 4 deletions cargo-crev/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = '2018'
name = "cargo-crev"
version = "0.4.0"
version = "0.5.0"
description = "Scalable, social, Code REView system that we desperately need - Rust/cargo frontend"
authors = ["Dawid Ciężarkiewicz <dpc@dpc.pw>"]
documentation = "https://docs.rs/crev"
Expand All @@ -21,9 +21,9 @@ quicli = "0.3"
structopt = "0.2"
common_failures = "0.1"
cargo = "0.32"
crev-lib = { path = "../crev-lib", version = "0.4" }
crev-data = { path = "../crev-data", version = "0.4" }
crev-common = { path = "../crev-common", version = "0.4" }
crev-lib = { path = "../crev-lib", version = "0.5" }
crev-data = { path = "../crev-data", version = "0.5" }
crev-common = { path = "../crev-common", version = "0.5" }
semver = "0.9"
default = "0.1"
crates_io_api = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion crev-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2018"
name = "crev-common"
version = "0.4.0"
version = "0.5.0"
description = "Scalable, social, Code REView system that we desperately need - common code"
authors = ["Dawid Ciężarkiewicz <dpc@dpc.pw>"]
documentation = "https://docs.rs/crev"
Expand Down
4 changes: 2 additions & 2 deletions crev-data/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = '2018'
name = "crev-data"
version = "0.4.0"
version = "0.5.0"
description = "Scalable, social, Code REView system that we desperately need - data types library"
authors = ["Dawid Ciężarkiewicz <dpc@dpc.pw>"]
documentation = "https://docs.rs/crev"
Expand All @@ -12,7 +12,7 @@ license = "MPL-2.0 OR MIT OR Apache-2.0"
readme = "../README.md"

[dependencies]
crev-common = { path = "../crev-common", version = "0.4" }
crev-common = { path = "../crev-common", version = "0.5" }
blake2 = "0.8"
chrono = "0.4"
common_failures = "0.1"
Expand Down
6 changes: 3 additions & 3 deletions crev-lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2018"
name = "crev-lib"
version = "0.4.0"
version = "0.5.0"
description = "Scalable, social, Code REView system that we desperately need - core library"
authors = ["Dawid Ciężarkiewicz <dpc@dpc.pw>"]
documentation = "https://docs.rs/crev"
Expand Down Expand Up @@ -41,11 +41,11 @@ version = "0.1"

[dependencies.crev-common]
path = "../crev-common"
version = "0.4"
version = "0.5"

[dependencies.crev-data]
path = "../crev-data"
version = "0.4"
version = "0.5"

[dependencies.crev-recursive-digest]
path = "../recursive-digest"
Expand Down
2 changes: 1 addition & 1 deletion crevsum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ failure = "0.1"

[dependencies.crev-common]
path = "../crev-common"
version = "0.4"
version = "0.5"

0 comments on commit 4e1fbde

Please sign in to comment.