Skip to content

Commit 4d40a71

Browse files
authored
Merge pull request #71 from square/lazarus/release
release 0.7.0
2 parents a3887bf + e83d41a commit 4d40a71

9 files changed

Lines changed: 42 additions & 23 deletions

File tree

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
strategy:
1111
matrix:
1212
ruby:
13-
- 3.2.0
14-
- 3.3.0
15-
- 3.4.0
13+
- 3.2
14+
- 3.3
15+
- 3.4
1616

1717
name: Ruby ${{ matrix.ruby }}
1818
steps:

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Change Log
22
==========
33

4+
Version 0.7.0 *(2025-10-20)*
5+
----------------------------
6+
## What's Changed
7+
* Add support for `YEARLY` `BYMONTHDAY` https://github.com/square/ruby-rrule/pull/69
8+
49
Version 0.6.0 *(2024-03-07)*
510
----------------------------
611
## What's Changed

Gemfile

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,10 @@
22

33
source 'https://rubygems.org'
44

5-
gem 'pry', '~> 0.14.1'
5+
gem 'appraisal'
6+
gem 'pry-byebug'
67
gem 'rake'
7-
gem 'rspec', '~> 3.8'
8+
gem 'rspec'
89
gem 'rubocop', '0.63.1'
910

10-
platform :mri do
11-
gem 'pry-byebug', '~> 3.10.1'
12-
end
13-
1411
gemspec

gemfiles/activesupport_7_0.gemfile

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,11 @@
22

33
source "https://rubygems.org"
44

5-
gem "pry", "~> 0.14.1"
5+
gem "appraisal"
6+
gem "pry-byebug"
67
gem "rake"
7-
gem "rspec", "~> 3.8"
8+
gem "rspec"
89
gem "rubocop", "0.63.1"
910
gem "activesupport", "~> 7.0"
1011

11-
platforms :mri do
12-
gem "pry-byebug", "~> 3.10.1"
13-
end
14-
1512
gemspec path: "../"

gemfiles/activesupport_7_1.gemfile

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,11 @@
22

33
source "https://rubygems.org"
44

5-
gem "pry", "~> 0.14.1"
5+
gem "appraisal"
6+
gem "pry-byebug"
67
gem "rake"
7-
gem "rspec", "~> 3.8"
8+
gem "rspec"
89
gem "rubocop", "0.63.1"
910
gem "activesupport", "~> 7.1"
1011

11-
platforms :mri do
12-
gem "pry-byebug", "~> 3.10.1"
13-
end
14-
1512
gemspec path: "../"

gemfiles/activesupport_7_2.gemfile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "appraisal"
6+
gem "pry-byebug"
7+
gem "rake"
8+
gem "rspec"
9+
gem "rubocop", "0.63.1"
10+
gem "activesupport", "~> 7.2"
11+
12+
gemspec path: "../"

gemfiles/activesupport_8_0.gemfile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "appraisal"
6+
gem "pry-byebug"
7+
gem "rake"
8+
gem "rspec"
9+
gem "rubocop", "0.63.1"
10+
gem "activesupport", "~> 8.0"
11+
12+
gemspec path: "../"

lib/rrule/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 RRule
4-
VERSION = '0.6.0'
4+
VERSION = '0.7.0'
55
end

rrule.gemspec

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,4 @@ Gem::Specification.new do |s|
2323

2424
s.required_ruby_version = '>= 2.6.0'
2525
s.add_runtime_dependency 'activesupport', '>= 2.3'
26-
s.add_development_dependency 'appraisal'
2726
end

0 commit comments

Comments
 (0)