Skip to content
This repository has been archived by the owner on Nov 13, 2023. It is now read-only.

Commit

Permalink
Release v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
miry committed Apr 30, 2022
1 parent 5f6d83a commit b0bf4ed
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 13 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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
Expand Down
19 changes: 9 additions & 10 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: medup
repository: https://github.com/miry/medup.git
version: 0.3.0
version: 0.4.0

authors:
- Michael Nikitochkin <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion src/medup/version.cr
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Medup
VERSION = "0.3.0"
VERSION = "0.4.0"
end

0 comments on commit b0bf4ed

Please sign in to comment.