mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-21 16:41:01 -05:00
chore: Release
This commit is contained in:
parent
feeef06a33
commit
98c3a33cc6
9 changed files with 15 additions and 12 deletions
|
@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||
<!-- next-header -->
|
||||
## [Unreleased] - ReleaseDate
|
||||
|
||||
## [1.13.2] - 2022-12-02
|
||||
|
||||
## [1.13.1] - 2022-11-30
|
||||
|
||||
### Fixes
|
||||
|
@ -541,7 +543,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.13.1...HEAD
|
||||
[Unreleased]: https://github.com/crate-ci/typos/compare/v1.13.2...HEAD
|
||||
[1.13.2]: https://github.com/crate-ci/typos/compare/v1.13.1...v1.13.2
|
||||
[1.13.1]: https://github.com/crate-ci/typos/compare/v1.13.0...v1.13.1
|
||||
[1.13.0]: https://github.com/crate-ci/typos/compare/v1.12.14...v1.13.0
|
||||
[1.12.14]: https://github.com/crate-ci/typos/compare/v1.12.13...v1.12.14
|
||||
|
|
8
Cargo.lock
generated
8
Cargo.lock
generated
|
@ -1619,7 +1619,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "typos-cli"
|
||||
version = "1.13.1"
|
||||
version = "1.13.2"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"anyhow",
|
||||
|
@ -1665,7 +1665,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "typos-dict"
|
||||
version = "0.9.11"
|
||||
version = "0.9.12"
|
||||
dependencies = [
|
||||
"codegenrs",
|
||||
"csv",
|
||||
|
@ -1679,7 +1679,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "typos-vars"
|
||||
version = "0.8.7"
|
||||
version = "0.8.8"
|
||||
dependencies = [
|
||||
"codegenrs",
|
||||
"dictgen",
|
||||
|
@ -1776,7 +1776,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "varcon"
|
||||
version = "0.6.6"
|
||||
version = "0.6.7"
|
||||
dependencies = [
|
||||
"codegenrs",
|
||||
"snapbox",
|
||||
|
|
|
@ -21,7 +21,7 @@ include = [
|
|||
|
||||
[package]
|
||||
name = "typos-cli"
|
||||
version = "1.13.1"
|
||||
version = "1.13.2"
|
||||
description = "Source Code Spelling Correction"
|
||||
readme = "README.md"
|
||||
categories = ["development-tools", "text-processing"]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "typos-dict"
|
||||
version = "0.9.11"
|
||||
version = "0.9.12"
|
||||
description = "Source Code Spelling Correction"
|
||||
readme = "../../README.md"
|
||||
categories = ["development-tools", "text-processing"]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "typos-vars"
|
||||
version = "0.8.7"
|
||||
version = "0.8.8"
|
||||
description = "Source Code Spelling Correction"
|
||||
readme = "../../README.md"
|
||||
categories = ["development-tools", "text-processing"]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "varcon"
|
||||
version = "0.6.6"
|
||||
version = "0.6.7"
|
||||
description = "Source Code Spelling Correction"
|
||||
readme = "../../README.md"
|
||||
categories = ["development-tools", "text-processing"]
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
FROM ubuntu:22.04
|
||||
ARG VERSION=1.13.1
|
||||
ARG VERSION=1.13.2
|
||||
ENV VERSION=${VERSION}
|
||||
RUN apt-get update && apt-get install -y wget git jq
|
||||
RUN wget https://github.com/crate-ci/typos/releases/download/v${VERSION}/typos-v${VERSION}-x86_64-unknown-linux-musl.tar.gz && \
|
||||
|
|
|
@ -6,7 +6,7 @@ config at this repository:
|
|||
```yaml
|
||||
repos:
|
||||
- repo: https://github.com/crate-ci/typos
|
||||
rev: v1.13.1
|
||||
rev: v1.13.2
|
||||
hooks:
|
||||
- id: typos
|
||||
```
|
||||
|
|
2
setup.py
2
setup.py
|
@ -15,7 +15,7 @@ from typing import Tuple
|
|||
from setuptools import setup
|
||||
from setuptools.command.install import install as orig_install
|
||||
|
||||
TYPOS_VERSION = '1.13.1'
|
||||
TYPOS_VERSION = '1.13.2'
|
||||
POSTFIX_SHA256 = {
|
||||
'linux': (
|
||||
'x86_64-unknown-linux-musl.tar.gz',
|
||||
|
|
Loading…
Reference in a new issue