Skip to content
This repository has been archived by the owner on Mar 2, 2022. It is now read-only.

Commit

Permalink
Release: 2.9.0 [skip ci]
Browse files Browse the repository at this point in the history
# [2.9.0](v2.8.0...v2.9.0) (2021-12-15)

### Chore

* Refactors incrementMap to be generic ([3e2494c](3e2494c))
* Renames parseInput variables in day14 ([cff8460](cff8460))

### New

* Adds day 15 completed challenge ([8a3ca63](8a3ca63))

### Update

* Makes day9 use the new PointMap ([cc836c9](cc836c9))
  • Loading branch information
semantic-release-bot committed Dec 15, 2021
1 parent cc836c9 commit 4d46824
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 16 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# [2.9.0](https://github.com/roryclaasen/advent2021/compare/v2.8.0...v2.9.0) (2021-12-15)


### Chore

* Refactors incrementMap to be generic ([3e2494c](https://github.com/roryclaasen/advent2021/commit/3e2494c92e7c94ad5a4e5a855c08cc9066cea6b1))
* Renames parseInput variables in day14 ([cff8460](https://github.com/roryclaasen/advent2021/commit/cff84600f4b07a67171580480ce5166c057cd77a))

### New

* Adds day 15 completed challenge ([8a3ca63](https://github.com/roryclaasen/advent2021/commit/8a3ca6390e942538845f1e21133851be29170f47))

### Update

* Makes day9 use the new PointMap ([cc836c9](https://github.com/roryclaasen/advent2021/commit/cc836c904830b851ce49fa351fe0edfaadbf0982))

# [2.8.0](https://github.com/roryclaasen/advent2021/compare/v2.7.0...v2.8.0) (2021-12-14)


Expand Down
47 changes: 32 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ $ npm install -g @roryclaasen/advent2021
$ advent2021 COMMAND
running command...
$ advent2021 (-v|--version|version)
@roryclaasen/advent2021/2.8.0 linux-x64 node-v16.13.1
@roryclaasen/advent2021/2.9.0 linux-x64 node-v16.13.1
$ advent2021 --help [COMMAND]
USAGE
$ advent2021 COMMAND
Expand All @@ -33,6 +33,7 @@ USAGE
* [`advent2021 day12`](#advent2021-day12)
* [`advent2021 day13`](#advent2021-day13)
* [`advent2021 day14`](#advent2021-day14)
* [`advent2021 day15`](#advent2021-day15)
* [`advent2021 day2`](#advent2021-day2)
* [`advent2021 day3`](#advent2021-day3)
* [`advent2021 day4`](#advent2021-day4)
Expand All @@ -57,7 +58,7 @@ ALIASES
$ advent2021 day:1
```

_See code: [src/commands/day1/index.ts](https://github.com/roryclaasen/advent2021/blob/v2.8.0/src/commands/day1/index.ts)_
_See code: [src/commands/day1/index.ts](https://github.com/roryclaasen/advent2021/blob/v2.9.0/src/commands/day1/index.ts)_

## `advent2021 day10`

Expand All @@ -73,7 +74,7 @@ ALIASES
$ advent2021 day:10
```

_See code: [src/commands/day10/index.ts](https://github.com/roryclaasen/advent2021/blob/v2.8.0/src/commands/day10/index.ts)_
_See code: [src/commands/day10/index.ts](https://github.com/roryclaasen/advent2021/blob/v2.9.0/src/commands/day10/index.ts)_

## `advent2021 day11`

Expand All @@ -89,7 +90,7 @@ ALIASES
$ advent2021 day:11
```

_See code: [src/commands/day11/index.ts](https://github.com/roryclaasen/advent2021/blob/v2.8.0/src/commands/day11/index.ts)_
_See code: [src/commands/day11/index.ts](https://github.com/roryclaasen/advent2021/blob/v2.9.0/src/commands/day11/index.ts)_

## `advent2021 day12`

Expand All @@ -105,7 +106,7 @@ ALIASES
$ advent2021 day:12
```

_See code: [src/commands/day12/index.ts](https://github.com/roryclaasen/advent2021/blob/v2.8.0/src/commands/day12/index.ts)_
_See code: [src/commands/day12/index.ts](https://github.com/roryclaasen/advent2021/blob/v2.9.0/src/commands/day12/index.ts)_

## `advent2021 day13`

Expand All @@ -121,7 +122,7 @@ ALIASES
$ advent2021 day:13
```

_See code: [src/commands/day13/index.ts](https://github.com/roryclaasen/advent2021/blob/v2.8.0/src/commands/day13/index.ts)_
_See code: [src/commands/day13/index.ts](https://github.com/roryclaasen/advent2021/blob/v2.9.0/src/commands/day13/index.ts)_

## `advent2021 day14`

Expand All @@ -137,7 +138,23 @@ ALIASES
$ advent2021 day:14
```

_See code: [src/commands/day14/index.ts](https://github.com/roryclaasen/advent2021/blob/v2.8.0/src/commands/day14/index.ts)_
_See code: [src/commands/day14/index.ts](https://github.com/roryclaasen/advent2021/blob/v2.9.0/src/commands/day14/index.ts)_

## `advent2021 day15`

```
USAGE
$ advent2021 day15
OPTIONS
-p, --part=1|2 Part to run
-t, --test Run using test data
ALIASES
$ advent2021 day:15
```

_See code: [src/commands/day15/index.ts](https://github.com/roryclaasen/advent2021/blob/v2.9.0/src/commands/day15/index.ts)_

## `advent2021 day2`

Expand All @@ -153,7 +170,7 @@ ALIASES
$ advent2021 day:2
```

_See code: [src/commands/day2/index.ts](https://github.com/roryclaasen/advent2021/blob/v2.8.0/src/commands/day2/index.ts)_
_See code: [src/commands/day2/index.ts](https://github.com/roryclaasen/advent2021/blob/v2.9.0/src/commands/day2/index.ts)_

## `advent2021 day3`

Expand All @@ -169,7 +186,7 @@ ALIASES
$ advent2021 day:3
```

_See code: [src/commands/day3/index.ts](https://github.com/roryclaasen/advent2021/blob/v2.8.0/src/commands/day3/index.ts)_
_See code: [src/commands/day3/index.ts](https://github.com/roryclaasen/advent2021/blob/v2.9.0/src/commands/day3/index.ts)_

## `advent2021 day4`

Expand All @@ -185,7 +202,7 @@ ALIASES
$ advent2021 day:4
```

_See code: [src/commands/day4/index.ts](https://github.com/roryclaasen/advent2021/blob/v2.8.0/src/commands/day4/index.ts)_
_See code: [src/commands/day4/index.ts](https://github.com/roryclaasen/advent2021/blob/v2.9.0/src/commands/day4/index.ts)_

## `advent2021 day5`

Expand All @@ -201,7 +218,7 @@ ALIASES
$ advent2021 day:5
```

_See code: [src/commands/day5/index.ts](https://github.com/roryclaasen/advent2021/blob/v2.8.0/src/commands/day5/index.ts)_
_See code: [src/commands/day5/index.ts](https://github.com/roryclaasen/advent2021/blob/v2.9.0/src/commands/day5/index.ts)_

## `advent2021 day6`

Expand All @@ -217,7 +234,7 @@ ALIASES
$ advent2021 day:6
```

_See code: [src/commands/day6/index.ts](https://github.com/roryclaasen/advent2021/blob/v2.8.0/src/commands/day6/index.ts)_
_See code: [src/commands/day6/index.ts](https://github.com/roryclaasen/advent2021/blob/v2.9.0/src/commands/day6/index.ts)_

## `advent2021 day7`

Expand All @@ -233,7 +250,7 @@ ALIASES
$ advent2021 day:7
```

_See code: [src/commands/day7/index.ts](https://github.com/roryclaasen/advent2021/blob/v2.8.0/src/commands/day7/index.ts)_
_See code: [src/commands/day7/index.ts](https://github.com/roryclaasen/advent2021/blob/v2.9.0/src/commands/day7/index.ts)_

## `advent2021 day8`

Expand All @@ -249,7 +266,7 @@ ALIASES
$ advent2021 day:8
```

_See code: [src/commands/day8/index.ts](https://github.com/roryclaasen/advent2021/blob/v2.8.0/src/commands/day8/index.ts)_
_See code: [src/commands/day8/index.ts](https://github.com/roryclaasen/advent2021/blob/v2.9.0/src/commands/day8/index.ts)_

## `advent2021 day9`

Expand All @@ -265,7 +282,7 @@ ALIASES
$ advent2021 day:9
```

_See code: [src/commands/day9/index.ts](https://github.com/roryclaasen/advent2021/blob/v2.8.0/src/commands/day9/index.ts)_
_See code: [src/commands/day9/index.ts](https://github.com/roryclaasen/advent2021/blob/v2.9.0/src/commands/day9/index.ts)_

## `advent2021 help [COMMAND]`

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@roryclaasen/advent2021",
"version": "2.8.0",
"version": "2.9.0",
"description": "My 2021 Advent of Code attempt",
"bin": {
"advent2021": "./bin/run"
Expand Down

0 comments on commit 4d46824

Please sign in to comment.