-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
James Couball
committed
Jan 19, 2022
1 parent
ca12c6d
commit 5f4d435
Showing
3 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<!-- | ||
# @markup markdown | ||
# @title Change Log | ||
--> | ||
|
||
# Change Log | ||
|
||
The full change log is stored on [this project's GitHub releases page](https://github.com/jcouball/active_model_persistence/releases). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters