diff --git a/CHANGELOG.md b/CHANGELOG.md index f42cfb9..da177ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.4.0] - 2022-04-30 ### Changed - Inline gist media as code block inside a result markdown file. (#39, @miry) - Inline youtube media as link instead of iframe. (#42, @miry) @@ -124,7 +126,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Relase docker image - Dump Medium posts base on author name -[Unreleased]: https://github.com/miry/medup/compare/v0.3.0...HEAD +[Unreleased]: https://github.com/miry/medup/compare/v0.4.0...HEAD +[0.4.0]: https://github.commiry/medup/compare/v0.3.0...v0.4.0 [0.3.0]: https://github.commiry/medup/compare/v0.2.1...v0.3.0 [0.2.1]: https://github.commiry/medup/compare/v0.2.0...v0.2.0 [0.2.0]: https://github.commiry/medup/compare/v0.1.10...v0.2.0 diff --git a/RELEASE.md b/RELEASE.md index 156ebb0..2256206 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -17,22 +17,12 @@ $ git pull origin master $ git push origin master ``` -### Bump release - -* Update [CHANGELOG.md](CHANGELOG.md): - - Add a new version header at the top of the document, - just after `# [Unreleased]` - - Update links at bottom of changelog -* Bump version in [shard.yml](shard.yml). -* Bump version in [src/medup/version.cr](src/medup/version.cr). - ### Test Make sure all test pass and docs are updated ```shell $ rake fmt test build test:e2e -$ crystal docs ``` There are some extra steps to check that everything else is working as expected @@ -48,6 +38,15 @@ There are some extra steps to check that everything else is working as expected $ open localhost:4000 ``` +### Bump release + +* Update [CHANGELOG.md](CHANGELOG.md): + - Add a new version header at the top of the document, + just after `# [Unreleased]` + - Update links at bottom of changelog +* Bump version in [shard.yml](shard.yml). +* Bump version in [src/medup/version.cr](src/medup/version.cr). + ### Commit and tag Create a release commit and tag diff --git a/shard.yml b/shard.yml index 46d92b5..ae484a0 100644 --- a/shard.yml +++ b/shard.yml @@ -1,6 +1,6 @@ name: medup repository: https://github.com/miry/medup.git -version: 0.3.0 +version: 0.4.0 authors: - Michael Nikitochkin diff --git a/src/medup/version.cr b/src/medup/version.cr index abe94f0..cd6bdf0 100644 --- a/src/medup/version.cr +++ b/src/medup/version.cr @@ -1,3 +1,3 @@ module Medup - VERSION = "0.3.0" + VERSION = "0.4.0" end