aoc_rb 0.2.9 → 0.2.10

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: 345d1c7554bb6930b1e8a174ecf2699a45d3608831e9e62c11a2c030b3a4b91c
4
- data.tar.gz: 4d6baad5f40942b06e8e80c30e1dc1db12366c750e4345214fa8d78209abd14a
3
+ metadata.gz: 2fa63d068a20e91f2743cb9e99b3c3913210b8fface4a16f2d3683ede6051b98
4
+ data.tar.gz: 72a9dd040852b6a9b656eb6fd5a7169573692ad9ea495a8faf5abbcb84c24966
5
5
  SHA512:
6
- metadata.gz: 57720a17dd3dcac43a7a97af1966df7b8db885129e25fdb0e3f3e4969582d885c6bffbbaa8f26a03336320f9e093893c538c700b811b055b76fa064bc09447c9
7
- data.tar.gz: 7fd8702c9e6ae60de0978b1346ac2928dacd8435012097e18f918789222284912290db98b9fcd74f106f12a4699d7f0998835a824897ed30262e8278af8ea1b3
6
+ metadata.gz: 4aa44a872dc3e21a2c259af34dfd9d5157411c414889d45488f7c8e670b8c5f8053198572626f583b8b6dbb4ef0e9e762bd0243d9086c840a8f65e5fa8d60484
7
+ data.tar.gz: 396e9670a974ebeef75851adb3090a324623f48110f01320a6606548fe47bbb4cde748f2ca09d9761be450e5b8cfb2a8e8c1a0dabf750f86a353f418cf668e36
data/CHANGELOG.md CHANGED
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
  ## [Unreleased]
8
8
  - No unreleased changes!
9
9
 
10
+ ## [0.2.10]
11
+ ### Changed
12
+ - Update API handler to accept zero padded day numbers ([#34](https://github.com/pacso/aoc_rb/pull/34) by [@YozuChris](https://github.com/YozuChris))
13
+
10
14
  ## [0.2.9]
11
15
  ### Changed
12
16
  - Added missing require to `lib/aoc_rb/app.rb` ([#33](https://github.com/pacso/aoc_rb/pull/33) by [@pacso](https://github.com/pacso))
@@ -74,7 +78,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
74
78
 
75
79
  Initial release.
76
80
 
77
- [Unreleased]: https://github.com/pacso/aoc_rb/compare/v0.2.9...HEAD
81
+ [Unreleased]: https://github.com/pacso/aoc_rb/compare/v0.2.10...HEAD
82
+ [0.2.10]: https://github.com/pacso/aoc_rb/compare/v0.2.9...v0.2.10
78
83
  [0.2.9]: https://github.com/pacso/aoc_rb/compare/v0.2.8...v0.2.9
79
84
  [0.2.8]: https://github.com/pacso/aoc_rb/compare/v0.2.7...v0.2.8
80
85
  [0.2.7]: https://github.com/pacso/aoc_rb/compare/v0.2.6...v0.2.7
@@ -24,7 +24,7 @@ module AocRb
24
24
 
25
25
  private
26
26
  def puzzle_path(year, day)
27
- "/#{year}/day/#{day}"
27
+ "/#{year}/day/#{day.to_i}"
28
28
  end
29
29
 
30
30
  def input_path(year, day)
@@ -1,3 +1,3 @@
1
1
  module AocRb
2
- VERSION = "0.2.9"
2
+ VERSION = "0.2.10"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aoc_rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.9
4
+ version: 0.2.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jon Pascoe
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-12-06 00:00:00.000000000 Z
11
+ date: 2024-12-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dotenv