Skip to content

Commit

Permalink
0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
paulshryock committed Dec 30, 2024
1 parent d434f81 commit a6997db
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- **Fixed** for any bug fixes.
- **Security** in case of vulnerabilities.

## [Unreleased](https://github.com/paulshryock/node-abstractions.git/compare/HEAD..v0.3.0)
## [Unreleased](https://github.com/paulshryock/node-abstractions.git/compare/HEAD..v0.3.1)

### Added

Expand All @@ -26,6 +26,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Security

## [v0.3.1](https://github.com/paulshryock/node-abstractions.git/releases/tag/v0.3.1) - 2024-12-29

### Changed

- Decrease specificity of CommandLine stream types.

### Removed

- Import less of node:readline module.

## [v0.3.0](https://github.com/paulshryock/node-abstractions.git/releases/tag/v0.3.0) - 2024-12-26

### Changed
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": "@paulshryock/abstractions",
"version": "0.3.0",
"version": "0.3.1",
"description": "Reusable abstractions for Node.js.",
"keywords": [
"abstraction",
Expand Down
4 changes: 2 additions & 2 deletions src/CommandLine/CommandLine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { PositionalArguments } from './PositionalArguments.ts'
* Reads and writes messages to and from the command line.
*
* @since 0.2.0 - Named LocalCommandLine.
* @since unreleased - Renamed to CommandLine.
* @since 0.3.0 - Renamed to CommandLine.
*/
export class CommandLine {
/**
Expand Down Expand Up @@ -137,7 +137,7 @@ export class CommandLine {
* @return {void}
*
* @since 0.2.0
* @since unreleased - Changed first argument from `Error` to `string`.
* @since 0.3.0 - Changed first argument from `Error` to `string`.
*/
public error(message: string, options?: CommandLineOutputOptions): void {
this.#console[options?.trace ? 'trace' : 'error'](message)
Expand Down

0 comments on commit a6997db

Please sign in to comment.