Skip to content

Commit 4d4f4cd

Browse files
committed
Release v1.2.0
1 parent 86ab2f5 commit 4d4f4cd

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
ruby-version: ["3.1", "3.2", "3.3"]
15+
ruby-version: ["3.2", "3.3", "3.4", "4.0"]
1616

1717
steps:
1818
- uses: actions/checkout@v4

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [1.1.0] - 2026-01-26
9-
8+
## [1.2.0] - 2026-01-27
109

10+
Minimum Ruby version increased from 2.6.0 to 3.2.0
1111

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-
klime (1.0.4)
4+
klime (1.2.0)
55
logger
66

77
GEM

klime.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
Gem::Specification.new do |spec|
44
spec.name = "klime"
5-
spec.version = "1.1.0"
5+
spec.version = "1.2.0"
66
spec.authors = ["Klime"]
77
spec.email = ["[email protected]"]
88

99
spec.summary = "Klime SDK for Ruby"
1010
spec.description = "Track events, identify users, and group them with organizations using Klime analytics."
1111
spec.homepage = "https://github.com/klimeapp/klime-ruby"
1212
spec.license = "MIT"
13-
spec.required_ruby_version = ">= 2.6.0"
13+
spec.required_ruby_version = ">= 3.2.0"
1414

1515
spec.metadata["homepage_uri"] = spec.homepage
1616
spec.metadata["source_code_uri"] = spec.homepage

lib/klime/version.rb

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

33
module Klime
4-
VERSION = "1.1.0"
4+
VERSION = "1.2.0"
55
end
66

0 commit comments

Comments
 (0)