philiprehberger-cron_kit 0.3.2 → 0.3.4

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: 191dac7de738af572cb9a43bdd8eba22da26a9d54dbb6b591c23f727bd945de5
4
+ data.tar.gz: b9977b9a4d8f802426708ea8730713e4d3355e8104bbcf55cdf3161c61e1b052
5
5
  SHA512:
6
- metadata.gz: d5f218d9f772d6b145671874310f57b20e14a9aa71b3a498c9beb6cf834019390476ebc47d741c0ac02195e7d7b32fefaefb43d0c21c6f971dc1ee025d1da123
7
- data.tar.gz: 78452e1e9473d120d3c3dc78f955f2b775896c3574e04bc9f173391c5604acb4f9e7ce4f1a4e6d2ba568c39dd61e2bbbd3e7c2d318d680f63393c59ee002d967
6
+ metadata.gz: 9c2266abdc96d7f4626b94d1f0dfde2245f07306a1cc57281553dee73c8e7e990cab8621092403b3a25f360c9dfd6c27d7b9006ea1d9ab5b1b0cd739d8b3de43
7
+ data.tar.gz: db85617efe8a5837201fa329c2000a1098cc8d65043044782dad78d9530568b6027e0b0082abc54cadcc1bebb6d8d257e27c766c5e085dd9a311b4f8cc0f7d89
data/CHANGELOG.md CHANGED
@@ -1,16 +1,30 @@
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
+ n## [0.3.4] - 2026-03-22
7
+
8
+ ### Changed
9
+ - Update rubocop configuration for Windows compatibility
6
10
 
7
- All notable changes to this project will be documented in this file.
11
+ ## [0.3.3] - 2026-03-20
12
+
13
+ ### Fixed
14
+ - Standardize Installation section in README
15
+ - Fix README description format (single sentence, no trailing period)
16
+ - Fix CHANGELOG header wording
8
17
 
9
18
  ## [0.3.2] - 2026-03-20
10
19
 
11
20
  ### Fixed
12
21
  - Fix Gem Version badge URL in README
13
22
 
23
+ ## [0.3.1] - 2026-03-18
24
+
25
+ ### Changed
26
+ - Fix RuboCop Style/StringLiterals violations in gemspec
27
+
14
28
  ## [0.3.0] - 2026-03-17
15
29
 
16
30
  ### Added
@@ -24,8 +38,9 @@ All notable changes to this project will be documented in this file.
24
38
  - `Timezone` module for offset resolution (stdlib only)
25
39
  - `Parser` module extracted from `Expression` for field parsing logic
26
40
 
27
- ## 0.2.1
41
+ ## [0.2.1] - 2026-03-17
28
42
 
43
+ ### Added
29
44
  - Add License badge to README
30
45
  - Add bug_tracker_uri to gemspec
31
46
  - 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.4"
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.4
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-22 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.