Skip to content

Commit

Permalink
Prep for release
Browse files Browse the repository at this point in the history
  • Loading branch information
PsychoLlama committed Mar 4, 2023
1 parent f86dd88 commit e67b2b6
Show file tree
Hide file tree
Showing 15 changed files with 47 additions and 68 deletions.
5 changes: 0 additions & 5 deletions .yarn/versions/00d15453.yml

This file was deleted.

5 changes: 0 additions & 5 deletions .yarn/versions/8b5e3180.yml

This file was deleted.

2 changes: 0 additions & 2 deletions .yarn/versions/95de9ecd.yml

This file was deleted.

12 changes: 0 additions & 12 deletions .yarn/versions/eaa5e725.yml

This file was deleted.

5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [0.5.0] - 2023-03-04

### Added

- `[@holz/env-filter]` New options `localStorageKey` and `environmentVariable` configure where to look for patterns.
Expand Down Expand Up @@ -87,7 +89,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- `[@holz/core]` Initial release.
- `[@holz/logger]` Initial release.

[unreleased]: https://github.com/PsychoLlama/holz/compare/v0.4.0...HEAD
[unreleased]: https://github.com/PsychoLlama/holz/compare/v0.5.0...HEAD
[0.5.0]: https://github.com/PsychoLlama/holz/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/PsychoLlama/holz/compare/v0.3.0...v0.4.0
[0.3.0]: https://github.com/PsychoLlama/holz/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/PsychoLlama/holz/compare/v0.1.1...v0.2.0
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@holz/monorepo",
"private": true,
"version": "0.4.0",
"version": "0.5.0",
"description": "Monorepo for all packages under the @holz organization",
"repository": "https://github.com/github:PsychoLlama/holz",
"author": "Jesse Gibson",
Expand Down
6 changes: 3 additions & 3 deletions packages/holz-ansi-terminal-backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@holz/ansi-terminal-backend",
"version": "0.4.0",
"version": "0.5.0",
"description": "An ANSI terminal backend for Holz",
"type": "module",
"main": "./dist/holz-ansi-terminal-backend.cjs",
Expand Down Expand Up @@ -38,10 +38,10 @@
"test:types": "tsc"
},
"peerDependencies": {
"@holz/core": "workspace:^0.2.0"
"@holz/core": "workspace:^0.5.0"
},
"devDependencies": {
"@holz/core": "workspace:^0.2.0",
"@holz/core": "workspace:^0.5.0",
"@types/node": "^18.14.0",
"@vitest/coverage-c8": "^0.28.5",
"typescript": "^4.9.5",
Expand Down
4 changes: 2 additions & 2 deletions packages/holz-console-backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@holz/console-backend",
"version": "0.3.0",
"version": "0.5.0",
"description": "A console backend for Holz",
"type": "module",
"main": "./dist/holz-console-backend.cjs",
Expand Down Expand Up @@ -39,7 +39,7 @@
"test:types": "tsc"
},
"devDependencies": {
"@holz/core": "workspace:^0.2.0",
"@holz/core": "workspace:^0.5.0",
"@types/node": "^18.14.0",
"@vitest/coverage-c8": "^0.28.5",
"typescript": "^4.9.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/holz-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@holz/core",
"version": "0.2.0",
"version": "0.5.0",
"description": "A structured and composable logger",
"type": "module",
"main": "./dist/holz-core.cjs",
Expand Down
6 changes: 3 additions & 3 deletions packages/holz-env-filter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@holz/env-filter",
"version": "0.2.0",
"version": "0.5.0",
"description": "Filter logs based on the current environment.",
"type": "module",
"main": "./dist/holz-env-filter.cjs",
Expand Down Expand Up @@ -40,10 +40,10 @@
"test:types": "tsc"
},
"dependencies": {
"@holz/pattern-filter": "workspace:^0.2.0"
"@holz/pattern-filter": "workspace:^0.5.0"
},
"devDependencies": {
"@holz/core": "workspace:^0.2.0",
"@holz/core": "workspace:^0.5.0",
"@types/node": "^18.14.0",
"@vitest/coverage-c8": "^0.28.5",
"vite": "^4.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/holz-json-backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@holz/json-backend",
"version": "0.4.0",
"version": "0.5.0",
"description": "Print logs as newline-delimited JSON.",
"type": "module",
"main": "./dist/holz-json-backend.cjs",
Expand Down Expand Up @@ -39,7 +39,7 @@
"test:types": "tsc"
},
"devDependencies": {
"@holz/core": "workspace:^0.2.0",
"@holz/core": "workspace:^0.5.0",
"@types/node": "^18.14.0",
"@vitest/coverage-c8": "^0.28.5",
"typescript": "^4.9.5",
Expand Down
12 changes: 6 additions & 6 deletions packages/holz-logger/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@holz/logger",
"version": "0.3.0",
"version": "0.5.0",
"description": "A preconfigured, general-purpose logger",
"type": "module",
"main": "./dist/browser-logger.cjs",
Expand Down Expand Up @@ -49,11 +49,11 @@
"test:types": "tsc"
},
"dependencies": {
"@holz/ansi-terminal-backend": "workspace:^0.4.0",
"@holz/console-backend": "workspace:^0.3.0",
"@holz/core": "workspace:^0.2.0",
"@holz/env-filter": "workspace:^0.2.0",
"@holz/stream-backend": "workspace:^0.4.0"
"@holz/ansi-terminal-backend": "workspace:^0.5.0",
"@holz/console-backend": "workspace:^0.5.0",
"@holz/core": "workspace:^0.5.0",
"@holz/env-filter": "workspace:^0.5.0",
"@holz/stream-backend": "workspace:^0.5.0"
},
"devDependencies": {
"@types/node": "^18.14.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/holz-pattern-filter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@holz/pattern-filter",
"version": "0.2.0",
"version": "0.5.0",
"description": "Only print log messages that match a pattern",
"type": "module",
"main": "./dist/holz-pattern-filter.cjs",
Expand Down Expand Up @@ -40,7 +40,7 @@
"test:types": "tsc"
},
"devDependencies": {
"@holz/core": "workspace:^0.2.0",
"@holz/core": "workspace:^0.5.0",
"@vitest/coverage-c8": "^0.28.5",
"typescript": "^4.9.5",
"vite": "^4.0.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/holz-stream-backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@holz/stream-backend",
"version": "0.4.0",
"version": "0.5.0",
"description": "Print logs to stdout or a file.",
"type": "module",
"main": "./dist/holz-stream-backend.cjs",
Expand Down Expand Up @@ -39,10 +39,10 @@
"test:types": "tsc"
},
"peerDependencies": {
"@holz/core": "workspace:^0.2.0"
"@holz/core": "workspace:^0.5.0"
},
"devDependencies": {
"@holz/core": "workspace:^0.2.0",
"@holz/core": "workspace:^0.5.0",
"@types/node": "^18.14.0",
"@vitest/coverage-c8": "^0.28.5",
"typescript": "^4.9.5",
Expand Down
40 changes: 20 additions & 20 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -190,26 +190,26 @@ __metadata:
languageName: node
linkType: hard

"@holz/ansi-terminal-backend@workspace:^0.4.0, @holz/ansi-terminal-backend@workspace:packages/holz-ansi-terminal-backend":
"@holz/ansi-terminal-backend@workspace:^0.5.0, @holz/ansi-terminal-backend@workspace:packages/holz-ansi-terminal-backend":
version: 0.0.0-use.local
resolution: "@holz/ansi-terminal-backend@workspace:packages/holz-ansi-terminal-backend"
dependencies:
"@holz/core": "workspace:^0.2.0"
"@holz/core": "workspace:^0.5.0"
"@types/node": ^18.14.0
"@vitest/coverage-c8": ^0.28.5
typescript: ^4.9.5
vite: ^4.0.0
vitest: ^0.28.5
peerDependencies:
"@holz/core": "workspace:^0.2.0"
"@holz/core": "workspace:^0.5.0"
languageName: unknown
linkType: soft

"@holz/console-backend@workspace:^0.3.0, @holz/console-backend@workspace:packages/holz-console-backend":
"@holz/console-backend@workspace:^0.5.0, @holz/console-backend@workspace:packages/holz-console-backend":
version: 0.0.0-use.local
resolution: "@holz/console-backend@workspace:packages/holz-console-backend"
dependencies:
"@holz/core": "workspace:^0.2.0"
"@holz/core": "workspace:^0.5.0"
"@types/node": ^18.14.0
"@vitest/coverage-c8": ^0.28.5
typescript: ^4.9.5
Expand All @@ -218,7 +218,7 @@ __metadata:
languageName: unknown
linkType: soft

"@holz/core@workspace:^0.2.0, @holz/core@workspace:packages/holz-core":
"@holz/core@workspace:^0.5.0, @holz/core@workspace:packages/holz-core":
version: 0.0.0-use.local
resolution: "@holz/core@workspace:packages/holz-core"
dependencies:
Expand All @@ -229,12 +229,12 @@ __metadata:
languageName: unknown
linkType: soft

"@holz/env-filter@workspace:^0.2.0, @holz/env-filter@workspace:packages/holz-env-filter":
"@holz/env-filter@workspace:^0.5.0, @holz/env-filter@workspace:packages/holz-env-filter":
version: 0.0.0-use.local
resolution: "@holz/env-filter@workspace:packages/holz-env-filter"
dependencies:
"@holz/core": "workspace:^0.2.0"
"@holz/pattern-filter": "workspace:^0.2.0"
"@holz/core": "workspace:^0.5.0"
"@holz/pattern-filter": "workspace:^0.5.0"
"@types/node": ^18.14.0
"@vitest/coverage-c8": ^0.28.5
vite: ^4.0.0
Expand All @@ -246,7 +246,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@holz/json-backend@workspace:packages/holz-json-backend"
dependencies:
"@holz/core": "workspace:^0.2.0"
"@holz/core": "workspace:^0.5.0"
"@types/node": ^18.14.0
"@vitest/coverage-c8": ^0.28.5
typescript: ^4.9.5
Expand All @@ -259,11 +259,11 @@ __metadata:
version: 0.0.0-use.local
resolution: "@holz/logger@workspace:packages/holz-logger"
dependencies:
"@holz/ansi-terminal-backend": "workspace:^0.4.0"
"@holz/console-backend": "workspace:^0.3.0"
"@holz/core": "workspace:^0.2.0"
"@holz/env-filter": "workspace:^0.2.0"
"@holz/stream-backend": "workspace:^0.4.0"
"@holz/ansi-terminal-backend": "workspace:^0.5.0"
"@holz/console-backend": "workspace:^0.5.0"
"@holz/core": "workspace:^0.5.0"
"@holz/env-filter": "workspace:^0.5.0"
"@holz/stream-backend": "workspace:^0.5.0"
"@types/node": ^18.14.0
"@vitest/coverage-c8": ^0.28.5
typescript: ^4.9.5
Expand All @@ -288,30 +288,30 @@ __metadata:
languageName: unknown
linkType: soft

"@holz/pattern-filter@workspace:^0.2.0, @holz/pattern-filter@workspace:packages/holz-pattern-filter":
"@holz/pattern-filter@workspace:^0.5.0, @holz/pattern-filter@workspace:packages/holz-pattern-filter":
version: 0.0.0-use.local
resolution: "@holz/pattern-filter@workspace:packages/holz-pattern-filter"
dependencies:
"@holz/core": "workspace:^0.2.0"
"@holz/core": "workspace:^0.5.0"
"@vitest/coverage-c8": ^0.28.5
typescript: ^4.9.5
vite: ^4.0.0
vitest: ^0.28.5
languageName: unknown
linkType: soft

"@holz/stream-backend@workspace:^0.4.0, @holz/stream-backend@workspace:packages/holz-stream-backend":
"@holz/stream-backend@workspace:^0.5.0, @holz/stream-backend@workspace:packages/holz-stream-backend":
version: 0.0.0-use.local
resolution: "@holz/stream-backend@workspace:packages/holz-stream-backend"
dependencies:
"@holz/core": "workspace:^0.2.0"
"@holz/core": "workspace:^0.5.0"
"@types/node": ^18.14.0
"@vitest/coverage-c8": ^0.28.5
typescript: ^4.9.5
vite: ^4.0.0
vitest: ^0.28.5
peerDependencies:
"@holz/core": "workspace:^0.2.0"
"@holz/core": "workspace:^0.5.0"
languageName: unknown
linkType: soft

Expand Down

0 comments on commit e67b2b6

Please # to comment.