Skip to content

Commit

Permalink
chore: release 2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
trystan2k committed May 20, 2024
1 parent a957d87 commit 0dd475f
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 58 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [2.4.0](https://github.com/trystan2k/zsh-tab-title/compare/v2.3.1...v2.4.0) (2024-05-20)


### Features

* add title handle for kitty terminal ([a957d87](https://github.com/trystan2k/zsh-tab-title/commit/a957d87e161f16bde8ad6e3320b03f5efb16f6bd))


### Bug Fixes

* change to check env settings after every command execution ([41eadc9](https://github.com/trystan2k/zsh-tab-title/commit/41eadc9f9db538df624381a30db0abd7b41c65fd))
* escape command line ([8680956](https://github.com/trystan2k/zsh-tab-title/commit/8680956adc73bec7439db693c0a54b40630c3989))
* prevent execution of the command in title. ([6e532a4](https://github.com/trystan2k/zsh-tab-title/commit/6e532a48e46ae56daec18255512dd8d0597f4aa6)), closes [/github.com/trystan2k/zsh-tab-title/pull/20#issuecomment-987573715](https://github.com/trystan2k//github.com/trystan2k/zsh-tab-title/pull/20/issues/issuecomment-987573715)

### [2.3.1](https://github.com/trystan2k/zsh-tab-title/compare/v2.3.0...v2.3.1) (2021-10-04)

## [2.3.0](https://github.com/trystan2k/zsh-tab-title/compare/v2.1.2...v2.3.0) (2021-10-04)
Expand Down
113 changes: 55 additions & 58 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,61 +1,58 @@
{
"name": "@trystan2k/zsh-tab-title",
"version": "2.3.1",
"description": "A zsh plugin that allows you to set a terminal header like any of PROMPT",
"keywords": [
"trystan2k",
"terminal",
"macos",
"linux",
"hyper",
"tab-title"
],
"homepage": "https://github.com/trystan2k/zsh-tab-title#readme",
"bugs": {
"url": "https://github.com/trystan2k/zsh-tab-title/issues"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:trystan2k/zsh-tab-title.git"
},
"license": "MIT",
"author": {
"name": "Thiago Mendonca",
"email": "[email protected]"
},
"scripts": {
"lint": "bash shellcheck.sh",
"push": "git push && git push --tags",
"release": "standard-version"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.+(sh)": [
"npm run lint"
],
"package.json": [
"sort-package-json"
]
},
"devDependencies": {
"@commitlint/cli": "^9.0.0",
"@commitlint/config-conventional": "^9.0.0",
"husky": "^4.2.0",
"lint-staged": "^10.2.0",
"sort-package-json": "^1.42.1",
"standard-version": "^8.0.0"
},
"standard-version": {
"releaseCommitMessageFormat": "chore: release {{currentTag}}"
"name": "@trystan2k/zsh-tab-title",
"version": "2.4.0",
"description": "A zsh plugin that allows you to set a terminal header like any of PROMPT",
"keywords": [
"trystan2k",
"terminal",
"macos",
"linux",
"hyper",
"tab-title"
],
"homepage": "https://github.com/trystan2k/zsh-tab-title#readme",
"bugs": {
"url": "https://github.com/trystan2k/zsh-tab-title/issues"
},
"repository": "github:trystan2k/zsh-tab-title",
"license": "MIT",
"author": {
"name": "Thiago Mendonca",
"email": "[email protected]"
},
"scripts": {
"lint": "bash shellcheck.sh",
"push": "git push && git push --tags",
"release": "standard-version"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.+(sh)": [
"npm run lint"
],
"package.json": [
"sort-package-json"
]
},
"devDependencies": {
"@commitlint/cli": "^9.0.0",
"@commitlint/config-conventional": "^9.0.0",
"husky": "^4.2.0",
"lint-staged": "^10.2.0",
"sort-package-json": "^1.42.1",
"standard-version": "^8.0.0"
},
"standard-version": {
"releaseCommitMessageFormat": "chore: release {{currentTag}}"
}
}

0 comments on commit 0dd475f

Please sign in to comment.