Skip to content

Commit af87232

Browse files
committed
Release 0.40.0
1 parent 0d15b1b commit af87232

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
fail-fast: false
2525
matrix:
2626
ruby_version:
27-
- '3.2'
27+
- '3.4'
2828

2929
services:
3030
db:
@@ -67,7 +67,7 @@ jobs:
6767
fail-fast: false
6868
matrix:
6969
ruby_version:
70-
- '3.2'
70+
- '3.4'
7171

7272
services:
7373
db:
@@ -146,7 +146,7 @@ jobs:
146146
export SHIPIT_GEM_PATH="${PWD}"
147147
mkdir /tmp/new-app
148148
cd /tmp/new-app
149-
gem install rails -v '~> 8.0.1' --no-document
149+
gem install rails -v '~> 8.0.2' --no-document
150150
rails new shipit --skip-action-cable --skip-turbolinks --skip-action-mailer --skip-active-storage --skip-webpack-install --skip-action-mailbox --skip-action-text -m "${SHIPIT_GEM_PATH}/template.rb"
151151
env:
152152
SHIPIT_EDGE: "1"

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# Unreleased
22

3+
# 0.40.0
4+
5+
* Allow `shipit.yml` inheritance. (#1393)
6+
* Forward deploy custom env variable when rolling back.
37
* Pass `Shipit::Stack` to `DeploySpec::FileSystem.new` and make it accessible through an accessor. (#1356)
48
* Upgraded Rubocop to 1.48.0
5-
* Upgraded to Rails 8.0.1
9+
* Upgraded to Rails 8.0
610
* Upgraded to Sqlite3 2.6.0
711
* Minimum Ruby version is now Ruby 3.2
812

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
shipit-engine (0.39.0)
4+
shipit-engine (0.40.0)
55
active_model_serializers (~> 0.9.3)
66
ansi_stream (~> 0.0.6)
77
autoprefixer-rails (~> 6.4.1)

lib/shipit/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Shipit
4-
VERSION = '0.39.0'
4+
VERSION = '0.40.0'
55
end

0 commit comments

Comments
 (0)