Skip to content

Commit 27c6fa0

Browse files
Merge pull request #246 from beakerandjake/feature/support-2024
Update config to support 2024
2 parents 5ff975e + b2f8921 commit 27c6fa0

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
### Changed
10+
- Updated configuration to support 2024. ([#246](https://github.com/beakerandjake/advent-of-code-runner/issues/247))
911

1012
## [1.7.1] - 2023-12-28
1113
### Fixed

src/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const CONFIG = {
7878
// also allows possibility that aoc doesn't run during a specific year.
7979
// also ensures that this package gets updates at least once a year to support
8080
// that years aoc and any changes that might be needed.
81-
years: [2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023],
81+
years: [2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024],
8282
days: [...Array(25).keys()].map((x) => x + 1), // 1-25 expected to always be advent calendar..
8383
levels: [1, 2],
8484
},

0 commit comments

Comments
 (0)