Skip to content

Commit f9d64e2

Browse files
committed
Bump version to 1.1.0, update CHANGELOG
1 parent bf92671 commit f9d64e2

4 files changed

Lines changed: 10 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
## [Unreleased]
22

3+
## [1.1.0] - 2026-06-04
4+
5+
- Ruby 3.4 support and development tooling upgrade (Bundler 4)
6+
- Fix frozen string literal warning in Ruby 3.4 (`String.new` instead of `''`)
7+
- Update CI to test against Ruby 3.2, 3.3, and 3.4; drop EOL 2.7/3.0/3.1
8+
- Add `release.yml` workflow for trusted RubyGems publishing
9+
310
## [1.0.0] - 2023-06-15
411

512
- Initial release

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-
lambda-console-ruby (1.0.0)
4+
lambda-console-ruby (1.1.0)
55

66
GEM
77
remote: https://rubygems.org/

lib/lambda-console-ruby/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module LambdaConsole
2-
VERSION = "1.0.0"
2+
VERSION = "1.1.0"
33
end

test/test_run.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class LambdaConsoleTestRun < LambdaConsoleSpec
1010
response = LambdaConsole::Run.handle(event('cat lib/lambda-console-ruby/version.rb'))
1111
expect(response[:statusCode]).must_equal 0
1212
expect(response[:headers]).must_equal({})
13-
expect(response[:body]).must_match %r{1.0.0}
13+
expect(response[:body]).must_match %r{#{LambdaConsole::VERSION}}
1414
end
1515

1616
it 'non shell captureable errors due to command not existing' do

0 commit comments

Comments
 (0)