Skip to content

Commit

Permalink
Bump to 0.7.0 and release.
Browse files Browse the repository at this point in the history
  • Loading branch information
blambeau committed Dec 8, 2023
1 parent 48841eb commit 89a7773
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ['2.7', '3.1', '3.2']
ruby: ['3.1', '3.2']
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
ruby-version: 3.1
bundler-cache: true

- run: make package
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
## 0.7.0
## 0.7.0 - 2023-12-08

* BREAKING: removed support for ruby 2.7. Ruby 3.1 is the minimal
version supported.

* Replaced Redcarpet by Commonmarker, which is closer to the Markdown
engine we use in Klaro Cards itself, and supports code highlighting
Expand Down
4 changes: 3 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
klaro-client (0.6.0)
klaro-client (0.7.0)
commonmarker (>= 0.26, < 1.0)
dotenv (~> 2.7)
http (>= 5.0, < 6.0)
Expand All @@ -14,6 +14,7 @@ GEM
public_suffix (>= 2.0.2, < 6.0)
commonmarker (1.0.0.pre12-aarch64-linux)
commonmarker (1.0.0.pre12-arm64-darwin)
commonmarker (1.0.0.pre12-x86_64-linux)
concurrent-ruby (1.2.2)
crack (0.4.5)
rexml
Expand Down Expand Up @@ -63,6 +64,7 @@ GEM
PLATFORMS
aarch64-linux
arm64-darwin-22
x86_64-linux

DEPENDENCIES
klaro-client!
Expand Down
2 changes: 1 addition & 1 deletion lib/klaro/client/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module Klaro
class Client
module Version
MAJOR = 0
MINOR = 6
MINOR = 7
TINY = 0
end
VERSION = "#{Version::MAJOR}.#{Version::MINOR}.#{Version::TINY}"
Expand Down

0 comments on commit 89a7773

Please sign in to comment.