Skip to content

Commit fedfaa4

Browse files
committed
bump version to 0.1.13 and update Ruby version requirements to >= 3.2
1 parent d660109 commit fedfaa4

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
BUNDLE_WITHOUT: ""
1313
strategy:
1414
matrix:
15-
ruby-version: ['3.3']
15+
ruby-version: ['3.2', '3.3']
1616
steps:
1717
- name: Checkout
1818
uses: actions/checkout@v4

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
ruby-version: ['3.1', '3.2', '3.3']
18+
ruby-version: ['3.2', '3.3']
1919

2020
steps:
2121
- uses: actions/checkout@v4

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-
promptly (0.1.12)
4+
promptly (0.1.13)
55
actionview (~> 7.2)
66

77
GEM

lib/promptly/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 Promptly
4-
VERSION = "0.1.12"
4+
VERSION = "0.1.13"
55
end

promptly.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
1212
spec.description = "Build maintainable, localized, and testable AI prompts using ERB or Liquid templates with Rails conventions"
1313
spec.homepage = "https://github.com/wilburhimself/promptly"
1414
spec.license = "MIT"
15-
spec.required_ruby_version = ">= 3.1", "< 3.4"
15+
spec.required_ruby_version = ">= 3.2", "< 3.4"
1616

1717
spec.metadata["allowed_push_host"] = "https://rubygems.org"
1818

0 commit comments

Comments
 (0)