Skip to content

Commit

Permalink
Merge branch 'master' of github.com:icyleaf/totem
Browse files Browse the repository at this point in the history
  • Loading branch information
icyleaf committed Mar 29, 2021
2 parents cb4becf + f3c2217 commit 4d6af5c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
command: crystal version
- run:
name: "Install dependencies"
command: shards install
command: shards install --ignore-crystal-version
- run:
name: "Run code format check"
command: |
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

> TODO
## [0.7.0] (2021-03-25)

- Compatibility with Crystal 1.0 (update shards version only).

## [0.6.2] (2021-02-04)

### Fixed
Expand Down Expand Up @@ -113,7 +117,8 @@ Long time no see 🙇‍♂️

:star2:First beta version:star2:

[Unreleased]: https://github.com/icyleaf/totem/compare/v0.6.2...HEAD
[Unreleased]: https://github.com/icyleaf/totem/compare/v0.7.0...HEAD
[0.7.0]: https://github.com/icyleaf/totem/compare/v0.6.2...v0.7.0
[0.6.2]: https://github.com/icyleaf/totem/compare/v0.6.1...v0.6.2
[0.6.1]: https://github.com/icyleaf/totem/compare/v0.6.0...v0.6.1
[0.6.0]: https://github.com/icyleaf/totem/compare/v0.5.2...v0.6.0
Expand Down
10 changes: 5 additions & 5 deletions shard.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
name: totem
version: 0.6.2
version: 0.7.0

authors:
- icyleaf <[email protected]>

crystal: 0.36.1
crystal: ">= 0.36.1, < 2.0.0"

dependencies:
popcorn:
github: icyleaf/popcorn
version: ~> 0.2.1
version: ~> 0.3.0

development_dependencies:
poncho:
github: icyleaf/poncho
version: ~> 0.3.0
version: ~> 0.4.0
redis:
github: stefanwille/crystal-redis
version: ~> 2.6.0
etcd:
github: icyleaf/etcd-crystal
version: ~> 0.2.3
version: ~> 0.4.0

license: MIT
2 changes: 1 addition & 1 deletion src/totem/version.cr
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Totem
VERSION = "0.6.2"
VERSION = "0.7.0"
end

0 comments on commit 4d6af5c

Please sign in to comment.