Skip to content

Commit 191f0e4

Browse files
committed
Release v0.2.0
1 parent a2197fd commit 191f0e4

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

CHANGELOG.md

+9-4
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77

88
## [Unreleased]
9+
[Unreleased]: https://github.com/althonos/flips.rs/compare/v0.2.0...HEAD
910

10-
[Unreleased]: https://github.com/althonos/flips.rs/compare/v0.1.0...HEAD
11-
11+
## [v0.2.0] - 2020-04-05
12+
[v0.2.0]: https://github.com/althonos/flips.rs/compare/v0.1.0...v0.2.0
13+
### Added
14+
- Support for `no_std` compilation by disabling `std` feature.
15+
- Delta BPS patches with more memory support.
16+
### Changed
17+
- Make `flips-sys` use `crc32fast` instead of builtin Flips implementation
18+
to compute checksums of patches and ROMs.
1219

1320
## [v0.1.0] - 2020-03-22
14-
1521
Initial release.
16-
1722
[v0.1.0]: https://github.com/althonos/flips.rs/compare/3bd54de...v0.1.0

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["flips-sys"]
33

44
[package]
55
name = "flips"
6-
version = "0.1.0"
6+
version = "0.2.0"
77
authors = ["Martin Larralde <[email protected]>"]
88
edition = "2018"
99
license = "GPL-3.0"
@@ -25,7 +25,7 @@ status = "actively-developed"
2525

2626
[dependencies.flips-sys]
2727
path = "./flips-sys"
28-
version = "0.1.0"
28+
version = "0.2.0"
2929
default-features = false
3030
[dependencies.err-derive]
3131
version = "0.2.3"

flips-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "flips-sys"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Martin Larralde <[email protected]>"]
55
edition = "2018"
66
build = "build.rs"

0 commit comments

Comments
 (0)