Add latest changes to changelog

This commit is contained in:
Christian Bundy 2020-01-16 11:53:01 -08:00
parent aa9b7dda1f
commit 9636d673ad
3 changed files with 14 additions and 1 deletions

View File

@ -21,6 +21,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Add follow/unfollow
- Add `--offline` CLI flag
### Fixed
- Fixed old messages appearing outside 'popular' time range
## [2.1.0] - 2019-09-24

6
package-lock.json generated
View File

@ -967,6 +967,12 @@
"supports-color": "^5.3.0"
}
},
"changelog-version": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/changelog-version/-/changelog-version-1.0.1.tgz",
"integrity": "sha512-WSY6Zq483wM31n+IhBb2f6uLgSQHCrui3VVmX4wmaxcszueYU15qDBhKzG+ZaKhv7ptfswPfv8epampii7s5Zw==",
"dev": true
},
"character-entities": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.3.tgz",

View File

@ -14,7 +14,8 @@
"fix": "standard --fix && stylelint --fix src/assets/*.css",
"start": "node src/index.js",
"test": "standard && dependency-check ./package.json --unused --no-dev --ignore-module highlight.js --ignore-module @fraction/base16-css && cspell --no-summary '**/*.{js,md}' && stylelint src/assets/*.css && tsc --allowJs --resolveJsonModule --lib dom --checkJs --noEmit --skipLibCheck src/index.js",
"preversion": "npm test"
"preversion": "npm test",
"version": "changelog-version && git add CHANGELOG.md"
},
"dependencies": {
"@fraction/base16-css": "^1.1.0",
@ -44,6 +45,7 @@
"yargs": "^15.0.0"
},
"devDependencies": {
"changelog-version": "^1.0.1",
"cspell": "^4.0.43",
"dependency-check": "^4.1.0",
"husky": "^3.0.5",