Skip to content

Commit 4d2c1df

Browse files
Merge pull request #227 from beakerandjake/feature/226-add-2023-as-valid-year
Feature/226 add 2023 as valid year
2 parents b111c18 + e529a67 commit 4d2c1df

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+
### Added
10+
- Added support for 2023 to the config file ([#226](https://github.com/beakerandjake/advent-of-code-runner/issues/226))
911

1012
## [1.3.6] - 2023-08-23
1113
### Fixed

src/config.js

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

0 commit comments

Comments
 (0)