diff --git a/CHANGELOG.md b/CHANGELOG.md index 439e3d6ac05049ee1a47c35aaee676d56ad10f3f..993abb8b3dde37d66307b0f926e6e5da99320b08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * +## [0.3.0] - 2022-06-21 + +### Changed + +* Started using [parcel](https://parceljs.org) for bundling resources + ## [0.2.0] - 2022-06-21 ### Added diff --git a/Cargo.toml b/Cargo.toml index 5900eefd348555e091f52ce4de6b87c5b345535c..6a135c44fe63a3059f239aa91666c8b761cf0141 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chip-ahoyto" -version = "0.2.0" +version = "0.3.0" authors = ["João Magalhães <joamag@gmail.com>"] description = "CHIP-8 Emulator in Rust" license = "Apache" diff --git a/examples/benchmark/Cargo.toml b/examples/benchmark/Cargo.toml index bc833cf5d6dcf36cba458e888153ed50915a81e2..9946bd4a1d0c2de9a11423d67ca04571333226cc 100644 --- a/examples/benchmark/Cargo.toml +++ b/examples/benchmark/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chip-ahoyto-benchmark" -version = "0.2.0" +version = "0.3.0" authors = ["João Magalhães <joamag@gmail.com>"] description = "CHIP-8 Benchmark application" license = "Apache-2.0" diff --git a/examples/sdl/Cargo.toml b/examples/sdl/Cargo.toml index 24355846e0044a0d1c642d7d8af022e1a04b3612..48c73459e29451f99bba068544a47aa5ffe80f0f 100644 --- a/examples/sdl/Cargo.toml +++ b/examples/sdl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chip-ahoyto-sdl" -version = "0.2.0" +version = "0.3.0" authors = ["João Magalhães <joamag@gmail.com>"] description = "CHIP-8 Emulator SDL (Desktop) Application" license = "Apache-2.0" diff --git a/examples/web/package.json b/examples/web/package.json index 0512eb7488ccb49938cfa11210455517d76f3125..2227cbf3da0f601ad97a3e59087dd2a031d1525f 100644 --- a/examples/web/package.json +++ b/examples/web/package.json @@ -1,6 +1,6 @@ { "name": "chip-ahoyto-web", - "version": "0.2.0", + "version": "0.3.0", "description": "The web version of CHIP-Ahoyto", "repository": { "type": "git",