-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix missing version bump from last release.
This changes the VERSION constant be a macro, so just the shards.yml version number need to be changed. Also change the change lo to adhere to keepachangelog.com
- Loading branch information
Showing
5 changed files
with
41 additions
and
29 deletions.
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,37 @@ | ||
# Sidekiq.cr Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [0.7.2] - 2023-04-19 | ||
### Fixed | ||
- Fix version numbering mistake from 0.7.1 release. | ||
- Fix some more ameba linter errors and ignore others. | ||
|
||
### Changed | ||
- Update dependencies and just fix the minimum required version of them | ||
- Remove ameba from development dependencies but keep using it on CI. | ||
- Adhere to https://keepachangelog.com/en/1.0.0/ | ||
|
||
## [0.7.1] - 2023-03-31 | ||
### Fixed | ||
- Update kemal dependency [#112] | ||
|
||
## [0.7.0] - 2021-04-01 | ||
### Fixed | ||
- Works with Crystal 1.0 | ||
|
||
## [0.6.1] - 2017-05-09 | ||
### Fixed | ||
- Updates for latest Crystal, Kemal versions | ||
|
||
## [0.6.0] - 2016-09-08 | ||
### Added | ||
- Implement `sidekiq_options` for Workers. [#3] | ||
|
||
### Fixed | ||
- Fixes for Crystal 0.19 | ||
|
||
## [0.5.0] - 2016-06-11 | ||
- Initial release. See the wiki for how to [Get Started](https://github.com/mperham/sidekiq.cr/wiki/Getting-Started)! |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name: sidekiq | ||
version: 0.7.0 | ||
version: 0.7.2 | ||
|
||
authors: | ||
- Mike Perham <[email protected]> | ||
|
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
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module Sidekiq | ||
VERSION = "0.7.0" | ||
VERSION = {{ `shards version "#{__DIR__}"`.chomp.stringify }} | ||
end |