Skip to content

Commit

Permalink
chore(release): publish v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Action committed Jun 23, 2021
1 parent 65e7c55 commit 45176a5
Show file tree
Hide file tree
Showing 8 changed files with 60 additions and 6 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,23 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.10.0](https://github.com/BenShelton/library-api/compare/v0.9.1...v0.10.0) (2021-06-23)


### Features

* **core:** add `getSongDetails` method to MediaCatalog ([485cf13](https://github.com/BenShelton/library-api/commit/485cf139078eef90b98d958acc861d744d2a2c93))
* **core:** add class for accessing the newer media catalog ([881d264](https://github.com/BenShelton/library-api/commit/881d264477e4a9e883757fc9591828755cb9efa8)), closes [#55](https://github.com/BenShelton/library-api/issues/55)
* **core:** add util to process a file line by line ([81da56e](https://github.com/BenShelton/library-api/commit/81da56e877eddfba6636f9207ee86bccc3f486f4))
* **express:** use new media catalog when getting media details ([2d21c24](https://github.com/BenShelton/library-api/commit/2d21c240c90085191cbfc9281213894b34009e2c)), closes [#55](https://github.com/BenShelton/library-api/issues/55)
* **media:** remove rounded corners from display window for better screen sharing ([70a9560](https://github.com/BenShelton/library-api/commit/70a95600a8c51992c91a1d2ef25599323e4119c8))
* **media:** use newer media catalog for video images/titles ([15706f4](https://github.com/BenShelton/library-api/commit/15706f4d04ecb807b45518c6f8295fe605a4e315)), closes [#55](https://github.com/BenShelton/library-api/issues/55)
* **media:** use newer media details when loading song details ([65e7c55](https://github.com/BenShelton/library-api/commit/65e7c555f88769d0c1a9b63fa688327bdca50b74))





## [0.9.1](https://github.com/BenShelton/library-api/compare/v0.9.0...v0.9.1) (2021-06-20)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.9.1",
"version": "0.10.0",
"npmClient": "yarn",
"packages": [
"packages/*"
Expand Down
13 changes: 13 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.10.0](https://github.com/BenShelton/library-api/compare/v0.9.1...v0.10.0) (2021-06-23)


### Features

* **core:** add `getSongDetails` method to MediaCatalog ([485cf13](https://github.com/BenShelton/library-api/commit/485cf139078eef90b98d958acc861d744d2a2c93))
* **core:** add class for accessing the newer media catalog ([881d264](https://github.com/BenShelton/library-api/commit/881d264477e4a9e883757fc9591828755cb9efa8)), closes [#55](https://github.com/BenShelton/library-api/issues/55)
* **core:** add util to process a file line by line ([81da56e](https://github.com/BenShelton/library-api/commit/81da56e877eddfba6636f9207ee86bccc3f486f4))





# [0.9.0](https://github.com/BenShelton/library-api/compare/v0.8.0...v0.9.0) (2021-06-10)


Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@library-api/core",
"version": "0.9.0",
"version": "0.10.0",
"description": "Core tools for use with @library-api packages.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
11 changes: 11 additions & 0 deletions packages/express/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.10.0](https://github.com/BenShelton/library-api/compare/v0.9.1...v0.10.0) (2021-06-23)


### Features

* **express:** use new media catalog when getting media details ([2d21c24](https://github.com/BenShelton/library-api/commit/2d21c240c90085191cbfc9281213894b34009e2c)), closes [#55](https://github.com/BenShelton/library-api/issues/55)





# [0.9.0](https://github.com/BenShelton/library-api/compare/v0.8.0...v0.9.0) (2021-06-10)


Expand Down
4 changes: 2 additions & 2 deletions packages/express/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@library-api/express",
"private": true,
"version": "0.9.0",
"version": "0.10.0",
"description": "An Express API for easily accessing information related to meetings and publications of Jehovah's Witnesses.",
"main": "dist/server.js",
"types": "dist/server.d.ts",
Expand Down Expand Up @@ -29,7 +29,7 @@
"tsc": "tsc --noEmit"
},
"dependencies": {
"@library-api/core": "^0.9.0",
"@library-api/core": "^0.10.0",
"express": "^4.17.1"
},
"devDependencies": {
Expand Down
13 changes: 13 additions & 0 deletions packages/media/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.10.0](https://github.com/BenShelton/library-api/compare/v0.9.1...v0.10.0) (2021-06-23)


### Features

* **media:** remove rounded corners from display window for better screen sharing ([70a9560](https://github.com/BenShelton/library-api/commit/70a95600a8c51992c91a1d2ef25599323e4119c8))
* **media:** use newer media catalog for video images/titles ([15706f4](https://github.com/BenShelton/library-api/commit/15706f4d04ecb807b45518c6f8295fe605a4e315)), closes [#55](https://github.com/BenShelton/library-api/issues/55)
* **media:** use newer media details when loading song details ([65e7c55](https://github.com/BenShelton/library-api/commit/65e7c555f88769d0c1a9b63fa688327bdca50b74))





## [0.9.1](https://github.com/BenShelton/library-api/compare/v0.9.0...v0.9.1) (2021-06-20)


Expand Down
4 changes: 2 additions & 2 deletions packages/media/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@library-api/media",
"private": true,
"version": "0.9.1",
"version": "0.10.0",
"description": "A cross-platform application that simplifies showing media for meetings of Jehovah's Witnesses.",
"main": "app/main/dist/index.cjs",
"repository": {
Expand All @@ -28,7 +28,7 @@
"tsc:renderer": "vue-tsc --noEmit -p app/renderer/tsconfig.json"
},
"dependencies": {
"@library-api/core": "^0.9.0",
"@library-api/core": "^0.10.0",
"electron-aspect-ratio-browser-window": "^1.0.2",
"electron-log": "^4.3.5",
"electron-store": "^8.0.0",
Expand Down

0 comments on commit 45176a5

Please sign in to comment.