Skip to content

Commit

Permalink
Merge pull request #89 from strzibny/2.4-release
Browse files Browse the repository at this point in the history
Bump version to 2.4.0
  • Loading branch information
strzibny authored Oct 13, 2024
2 parents 1a24933 + 37f11a4 commit eb0e27b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 92 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,18 @@ jobs:
fail-fast: false
matrix:
ruby:
- "3.0"
- "3.1"
- "3.2"
- "ruby-head"
# - "ruby-head"
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
- name: Install system dependencies
run: sudo apt-get install imagemagick libmagickwand-dev
- name: Check out code
uses: actions/checkout@v4
- name: Install Ruby dependencies
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake test
- name: Run tests
run: bundle exec rake test
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ RUN apk update && apk upgrade
RUN apk add build-base bash ruby ruby-etc ruby-dev

# Install builtin fonts
RUN gem install invoice_printer_fonts --version 2.3.0 --no-document
RUN gem install invoice_printer_fonts --version 2.4.0 --no-document

# Install the gem from RubyGems.org
RUN gem install invoice_printer_server --version 2.3.0 --no-document
RUN gem install invoice_printer_server --version 2.4.0 --no-document

# Clean APK cache
RUN rm -rf /var/cache/apk/*
Expand Down
84 changes: 0 additions & 84 deletions Gemfile.lock

This file was deleted.

2 changes: 1 addition & 1 deletion lib/invoice_printer/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module InvoicePrinter
VERSION = '2.3.0'
VERSION = '2.4.0'
end

0 comments on commit eb0e27b

Please sign in to comment.