Skip to content

Commit

Permalink
chore: version to 0.8.0 (#289)
Browse files Browse the repository at this point in the history
  • Loading branch information
miraclx authored Aug 4, 2022
1 parent 5a408ac commit 3b6a0a1
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 11 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- Refactored the Dockerfile, and reduced the docker image size by 16%. <https://github.com/miraclx/freyr-js/issues/257>
## [0.8.0] - 2022-08-04

- Refactored the Dockerfile, and reduced the docker image size by 23%. <https://github.com/miraclx/freyr-js/issues/257>
- Manually compile `AtomicParsley` during docker build to allow for maximum platform support. <https://github.com/miraclx/freyr-js/pull/212>
- Add Mac M1 support to the docker image. <https://github.com/miraclx/freyr-js/pull/214>
- Made docker build faster by caching and unbinding nondependent layers. <https://github.com/miraclx/freyr-js/pull/273>, <https://github.com/miraclx/freyr-js/pull/268>
- Fix `yarn install` not ahering to dependency overrides. <https://github.com/miraclx/freyr-js/pull/215>
- Add ability to disable the progressbar. <https://github.com/miraclx/freyr-js/pull/263>
- Remove persistent `tty` writing for normal logs. Allowing `stdout` piping for everything except the progressbar. <https://github.com/miraclx/freyr-js/pull/231>
- Fix long standing issue with freyr seeming frozen on exit. <https://github.com/miraclx/freyr-js/pull/216>
- Upgraded to ES6 Modules. <https://github.com/miraclx/freyr-js/pull/202>
- Introduced the pushing of docker images for each PR. <https://github.com/miraclx/freyr-js/pull/218>, <https://github.com/miraclx/freyr-js/pull/228>
- Introduced a test runner, with local reproducible builds. <https://github.com/miraclx/freyr-js/pull/264>
- Redesigned the auth page a bit. <https://github.com/miraclx/freyr-js/pull/286>
- Introduced CI checks for formatting.
- Updated dependencies.
- Removed some unused dependencies. <https://github.com/miraclx/freyr-js/pull/217>, <https://github.com/miraclx/freyr-js/pull/245>
Expand Down Expand Up @@ -48,7 +52,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

> Release Page: <https://github.com/miraclx/freyr-js/releases/tag/v0.5.0>
[unreleased]: https://github.com/miraclx/freyr-js/compare/v0.7.0...HEAD
[unreleased]: https://github.com/miraclx/freyr-js/compare/v0.8.0...HEAD
[0.8.0]: https://github.com/miraclx/freyr-js/releases/compare/v0.7.0...v0.8.0
[0.7.0]: https://github.com/miraclx/freyr-js/releases/compare/v0.6.0...v0.7.0
[0.6.0]: https://github.com/miraclx/freyr-js/releases/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/miraclx/freyr-js/releases/tag/v0.5.0
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!-- markdownlint-disable MD001 MD007 MD023 MD041 -->
<!-- markdownlint-disable MD001 MD007 MD023 MD041 MD051 -->

<div align="center">
<a href="https://github.com/miraclx/freyr-js">
Expand Down Expand Up @@ -254,7 +254,7 @@ Usage: freyr [options] [query...]
/ /_/ ___/ _ \/ / / / ___/
/ __/ / / __/ /_/ / /
/_/ /_/ \___/\__, /_/
/____/ v0.7.0
/____/ v0.8.0

freyr - (c) Miraculous Owonubi <[email protected]>
-------------------------------------------------------------
Expand Down Expand Up @@ -349,7 +349,7 @@ Info:
/ /_/ ___/ _ \/ / / / ___/
/ __/ / / __/ /_/ / /
/_/ /_/ \___/\__, /_/
/____/ v0.7.0
/____/ v0.8.0

freyr - (c) Miraculous Owonubi <[email protected]>
-------------------------------------------------------------
Expand Down Expand Up @@ -410,7 +410,7 @@ Checking directory permissions...[done]
/ /_/ ___/ _ \/ / / / ___/
/ __/ / / __/ /_/ / /
/_/ /_/ \___/\__, /_/
/____/ v0.7.0
/____/ v0.8.0

freyr - (c) Miraculous Owonubi <[email protected]>
-------------------------------------------------------------
Expand Down Expand Up @@ -495,7 +495,7 @@ Checking directory permissions...[done]
/ /_/ ___/ _ \/ / / / ___/
/ __/ / / __/ /_/ / /
/_/ /_/ \___/\__, /_/
/____/ v0.7.0
/____/ v0.8.0

freyr - (c) Miraculous Owonubi <[email protected]>
-------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "freyr",
"version": "0.7.0",
"version": "0.8.0",
"description": "A versatile, service-agnostic music downloader and manager",
"exports": "./src/freyr.js",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/cli_server.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function wrapHTML(opts) {
</head>
<body>
<div class="box center-v center-h">
<div class="box center-v">
<h1>FreyrCLI</h1>
<hr width="45%" />
<b>:{service}</b>
Expand Down

0 comments on commit 3b6a0a1

Please sign in to comment.