Skip to content

Commit

Permalink
Patch latest release
Browse files Browse the repository at this point in the history
  • Loading branch information
mnkiefer authored Jun 27, 2023
2 parents 39aeea8 + 352985a commit b62e77e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
The format is based on [Keep a Changelog](http://keepachangelog.com/).

## Version - 1.2.1 - 2023-06-27

### Added
- Added repository info to `package.json`

### Fixed
- Missing compiled `lib/`

## Version 1.2.0 - 2023-06-27

Expand Down
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "html2notebook",
"version": "1.2.0",
"version": "1.2.1",
"author": "Mara Nikola Kiefer",
"license": "MIT",
"description": "Convert static HTML files to notebooks",
Expand All @@ -12,6 +12,10 @@
"LICENSE"
],
"types": "lib/types/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/mnkiefer/html2notebook"
},
"dependencies": {
"htmlparser2": "^9.0.0"
},
Expand All @@ -29,7 +33,7 @@
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -p ./ --watch",
"test": "jest",
"test": "npm run compile && jest",
"lint": "eslint",
"docs": "npx typedoc --entryPoints src/index.ts --out docs"
}
Expand Down

0 comments on commit b62e77e

Please sign in to comment.