Skip to content

Commit

Permalink
Add CHANGELOG.md (also include it into the build)
Browse files Browse the repository at this point in the history
  • Loading branch information
kachkaev committed Apr 2, 2019
1 parent c420485 commit 93be2dd
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
## v1.0.1 (2019-04-02)

- Add `CHANGELOG.md` (also include it into the build)
- Add missing config docs
- Parse unescaped `\n` and `\r` in `EVENT_LINE_FORMAT` as newline symbols
- Use 24 instead of 12 hour format by default

## v1.0.0 (2019-03-31)

Initial release
1 change: 1 addition & 0 deletions src/build.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ describe("build", () => {
expect(Object.keys(zip.files)).toEqual([
"git-2.4.3.tar",
"index.js",
"CHANGELOG.md",
"LICENSE",
"README.md",
]);
Expand Down
4 changes: 4 additions & 0 deletions src/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ const build = async () => {
"index.js",
fs.createReadStream(path.resolve(buildOutDir, "handler.js")),
);
zip.file(
"CHANGELOG.md",
fs.createReadStream(path.resolve(__dirname, "../CHANGELOG.md")),
);
zip.file(
"LICENSE",
fs.createReadStream(path.resolve(__dirname, "../LICENSE")),
Expand Down

0 comments on commit 93be2dd

Please sign in to comment.