philiprehberger-cron_kit 0.3.2 → 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 187372bac0087e363c68c33eaef21d918463a9b88ad34adcc8dd1779d5c69f69
4
- data.tar.gz: 4ced735a0ec159bf61aa2a0a6f58567187c150fa714ba64fa9327b94392e5bdb
3
+ metadata.gz: f32495abec17d96d4ccc27aa224ab5f8b552bfad585a33fc767b3cb65111fba5
4
+ data.tar.gz: c40ec2e1ceb338a94d519a5277445dc12804fc81d7323b029c2daf48e8ce278f
5
5
  SHA512:
6
- metadata.gz: d5f218d9f772d6b145671874310f57b20e14a9aa71b3a498c9beb6cf834019390476ebc47d741c0ac02195e7d7b32fefaefb43d0c21c6f971dc1ee025d1da123
7
- data.tar.gz: 78452e1e9473d120d3c3dc78f955f2b775896c3574e04bc9f173391c5604acb4f9e7ce4f1a4e6d2ba568c39dd61e2bbbd3e7c2d318d680f63393c59ee002d967
6
+ metadata.gz: 664b187b30c845a2022a2b6569da52b84680601e66f8e687f7dbb03583571c91c584f71e7c1ca6507ecd9e54796172189a02e1f8f4e59df40eb54483dcb8f7a1
7
+ data.tar.gz: 2fd5e40f7cbbdfd201792a269a95fae5b8c65439451a018fffc28ddd8bc731929f83cc9d63c7d53d7de67cc4d84727a9c93e2c0cac4c7eb6aa5c33e0d034dc6d
data/CHANGELOG.md CHANGED
@@ -1,16 +1,26 @@
1
1
  # Changelog
2
2
 
3
- ## 0.3.1
3
+ All notable changes to this gem will be documented in this file.
4
4
 
5
- - Fix RuboCop Style/StringLiterals violations in gemspec
5
+ ## [Unreleased]
6
+
7
+ ## [0.3.3] - 2026-03-20
6
8
 
7
- All notable changes to this project will be documented in this file.
9
+ ### Fixed
10
+ - Standardize Installation section in README
11
+ - Fix README description format (single sentence, no trailing period)
12
+ - Fix CHANGELOG header wording
8
13
 
9
14
  ## [0.3.2] - 2026-03-20
10
15
 
11
16
  ### Fixed
12
17
  - Fix Gem Version badge URL in README
13
18
 
19
+ ## [0.3.1] - 2026-03-18
20
+
21
+ ### Changed
22
+ - Fix RuboCop Style/StringLiterals violations in gemspec
23
+
14
24
  ## [0.3.0] - 2026-03-17
15
25
 
16
26
  ### Added
@@ -24,8 +34,9 @@ All notable changes to this project will be documented in this file.
24
34
  - `Timezone` module for offset resolution (stdlib only)
25
35
  - `Parser` module extracted from `Expression` for field parsing logic
26
36
 
27
- ## 0.2.1
37
+ ## [0.2.1] - 2026-03-17
28
38
 
39
+ ### Added
29
40
  - Add License badge to README
30
41
  - Add bug_tracker_uri to gemspec
31
42
  - Add Development section to README
data/README.md CHANGED
@@ -1,10 +1,10 @@
1
1
  # philiprehberger-cron_kit
2
2
 
3
+ [![Tests](https://github.com/philiprehberger/rb-cron-kit/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/rb-cron-kit/actions/workflows/ci.yml)
3
4
  [![Gem Version](https://badge.fury.io/rb/philiprehberger-cron_kit.svg)](https://rubygems.org/gems/philiprehberger-cron_kit)
4
- [![CI](https://github.com/philiprehberger/rb-cron-kit/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/rb-cron-kit/actions/workflows/ci.yml)
5
5
  [![License](https://img.shields.io/github/license/philiprehberger/rb-cron-kit)](LICENSE)
6
6
 
7
- Cron expression parser and scheduler for Ruby. Zero dependencies.
7
+ Cron expression parser and scheduler for Ruby
8
8
 
9
9
  ## Requirements
10
10
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module CronKit
5
- VERSION = "0.3.2"
5
+ VERSION = "0.3.3"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: philiprehberger-cron_kit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Philip Rehberger
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-03-20 00:00:00.000000000 Z
11
+ date: 2026-03-21 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: A zero-dependency Ruby gem for parsing 5-field cron expressions and running
14
14
  an in-process scheduler. Supports wildcards, ranges, steps, and lists.