Skip to content

Commit

Permalink
chore: fix publish script
Browse files Browse the repository at this point in the history
  • Loading branch information
pimenovoleg committed Feb 25, 2019
1 parent 21dd1f0 commit cb5362b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 1.0.0-beta.3 (2019-02-25)
# 1.0.0-beta.3 "Monoxide Core" (2019-02-25)


### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion tools/release/extract-release-notes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { readFileSync } from 'fs';


/** Extracts the release notes for a specific release from a given changelog file. */
export function extractReleaseNotes(changelogPath: string, versionName: string) {
export function extractReleaseNotes(changelogPath: string, versionName: string): any {
const changelogContent = readFileSync(changelogPath, 'utf8');
const escapedVersion = versionName.replace('.', '\\.');

Expand Down

0 comments on commit cb5362b

Please sign in to comment.