Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Mar 1, 2025
1 parent 1594c08 commit 8951ef9
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 11 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- next-header -->
## [Unreleased] - ReleaseDate

## [1.30.0] - 2025-03-01

### Features

- Updated the dictionary with the [February 2025](https://github.com/crate-ci/typos/issues/1221) changes
Expand Down Expand Up @@ -1439,7 +1441,8 @@ Note: MSRV is now 1.54
* Only do hex check if digits are in identifiers ([68cd36d0](https://github.com/crate-ci/typos/commit/68cd36d0de90226dbc9d31c2ce6d8bf6b69adb5c))

<!-- next-url -->
[Unreleased]: https://github.com/crate-ci/typos/compare/v1.29.10...HEAD
[Unreleased]: https://github.com/crate-ci/typos/compare/v1.30.0...HEAD
[1.30.0]: https://github.com/crate-ci/typos/compare/v1.29.10...v1.30.0
[1.29.10]: https://github.com/crate-ci/typos/compare/v1.29.9...v1.29.10
[1.29.9]: https://github.com/crate-ci/typos/compare/v1.29.8...v1.29.9
[1.29.8]: https://github.com/crate-ci/typos/compare/v1.29.7...v1.29.8
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion action/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ if [[ -z $(ls ${TARGET} 2>/dev/null) ]]; then
fi

if [[ ! -x ${COMMAND} ]]; then
VERSION=1.29.10
VERSION=1.30.0
if [[ "$(uname -m)" == "arm64" || "$(uname -m)" == "aarch64" ]]; then
ARCH="aarch64"
else
Expand Down
2 changes: 1 addition & 1 deletion crates/typos-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typos-cli"
version = "1.29.10"
version = "1.30.0"
description = "Source Code Spelling Correction"
readme = "../../README.md"
categories = ["development-tools", "text-processing"]
Expand Down
10 changes: 5 additions & 5 deletions docs/github-action.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Checkout Actions Repository
uses: actions/checkout@v4
- name: Spell Check Repo
uses: crate-ci/typos@v1.29.10
uses: crate-ci/typos@v1.30.0
```
**Requirements:** The runner must have `wget` installed
Expand Down Expand Up @@ -61,24 +61,24 @@ jobs:
uses: actions/checkout@v4
- name: Check spelling of file.txt
uses: crate-ci/typos@v1.29.10
uses: crate-ci/typos@v1.30.0
with:
files: ./file.txt
- name: Use custom config file
uses: crate-ci/typos@v1.29.10
uses: crate-ci/typos@v1.30.0
with:
files: ./file.txt
config: ./myconfig.toml
- name: Ignore implicit configuration file
uses: crate-ci/typos@v1.29.10
uses: crate-ci/typos@v1.30.0
with:
files: ./file.txt
isolated: true
- name: Writes changes in the local checkout
uses: crate-ci/typos@v1.29.10
uses: crate-ci/typos@v1.30.0
with:
write_changes: true
```
2 changes: 1 addition & 1 deletion docs/pre-commit.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ config at this repository:
```yaml
repos:
- repo: https://github.com/crate-ci/typos
rev: v1.29.10
rev: v1.30.0
hooks:
- id: typos
```
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup


TYPOS_VERSION = '1.29.10'
TYPOS_VERSION = '1.30.0'


setup(
Expand Down

0 comments on commit 8951ef9

Please sign in to comment.