Skip to content

Commit eb0e27b

Browse files
authored
Merge pull request #89 from strzibny/2.4-release
Bump version to 2.4.0
2 parents 1a24933 + 37f11a4 commit eb0e27b

File tree

4 files changed

+12
-92
lines changed

4 files changed

+12
-92
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,18 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
ruby:
23-
- "3.0"
2423
- "3.1"
2524
- "3.2"
26-
- "ruby-head"
25+
# - "ruby-head"
2726
steps:
28-
- uses: actions/checkout@v4
29-
- uses: ruby/setup-ruby@v1
27+
- name: Install system dependencies
28+
run: sudo apt-get install imagemagick libmagickwand-dev
29+
- name: Check out code
30+
uses: actions/checkout@v4
31+
- name: Install Ruby dependencies
32+
uses: ruby/setup-ruby@v1
3033
with:
3134
ruby-version: ${{ matrix.ruby }}
3235
bundler-cache: true
33-
- run: bundle exec rake test
36+
- name: Run tests
37+
run: bundle exec rake test

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ RUN apk update && apk upgrade
2626
RUN apk add build-base bash ruby ruby-etc ruby-dev
2727

2828
# Install builtin fonts
29-
RUN gem install invoice_printer_fonts --version 2.3.0 --no-document
29+
RUN gem install invoice_printer_fonts --version 2.4.0 --no-document
3030

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

3434
# Clean APK cache
3535
RUN rm -rf /var/cache/apk/*

Gemfile.lock

Lines changed: 0 additions & 84 deletions
This file was deleted.

lib/invoice_printer/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module InvoicePrinter
2-
VERSION = '2.3.0'
2+
VERSION = '2.4.0'
33
end

0 commit comments

Comments
 (0)