diff --git a/CHANGELOG.md b/CHANGELOG.md index bcc03c9..0feb2e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/package.json b/package.json index 0a3bad5..65225d1 100644 --- a/package.json +++ b/package.json @@ -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://git@github.com:trystan2k/zsh-tab-title.git" - }, - "license": "MIT", - "author": { - "name": "Thiago Mendonca", - "email": "trystan2k@gmail.com" - }, - "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": "trystan2k@gmail.com" + }, + "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}}" + } }