From 5f4d4351891e95329d32638ebd1ccbfea14a321f Mon Sep 17 00:00:00 2001 From: James Couball Date: Wed, 19 Jan 2022 09:28:17 -0800 Subject: [PATCH] Prepare for v0.2.0 --- CHANGELOG.md | 8 ++++++++ Dockerfile.changelog-rs | 12 ++++++++++++ lib/active_model_persistence/version.rb | 2 +- 3 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md create mode 100644 Dockerfile.changelog-rs diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..3eba2b8 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,8 @@ + + +# Change Log + +The full change log is stored on [this project's GitHub releases page](https://github.com/jcouball/active_model_persistence/releases). diff --git a/Dockerfile.changelog-rs b/Dockerfile.changelog-rs new file mode 100644 index 0000000..75c35d9 --- /dev/null +++ b/Dockerfile.changelog-rs @@ -0,0 +1,12 @@ +FROM rust + +# Build the docker image (from this project's root directory): +# docker build --file Dockerfile.changelog-rs --tag changelog-rs . +# +# Use this image to output a changelog (from this project's root directory): +# docker run --rm --volume "$PWD:/worktree" changelog-rs v1.9.1 v1.10.0 + +RUN cargo install changelog-rs +WORKDIR /worktree + +ENTRYPOINT ["/usr/local/cargo/bin/changelog-rs", "/worktree"] diff --git a/lib/active_model_persistence/version.rb b/lib/active_model_persistence/version.rb index a19b110..c743400 100644 --- a/lib/active_model_persistence/version.rb +++ b/lib/active_model_persistence/version.rb @@ -2,5 +2,5 @@ module ActiveModelPersistence # The version of the active_model_persistence gem - VERSION = '0.1.0' + VERSION = '0.2.0' end