Skip to content

Commit

Permalink
Bump jpegoptim-py to v1.5.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
UnknownPlatypus committed Dec 18, 2023
1 parent c908cd2 commit 8518c48
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Sample `.pre-commit-config.yaml`:

```yaml
- repo: https://github.com/UnknownPlatypus/jpegoptim-py
rev: v1.5.4.1
rev: v1.5.5.1
hooks:
- id: jpegoptim
```
Expand All @@ -39,7 +39,7 @@ Sample `.pre-commit-config.yaml` with lossy compression enabled:

```yaml
- repo: https://github.com/UnknownPlatypus/jpegoptim-py
rev: v1.5.4.1
rev: v1.5.5.1
hooks:
- id: jpegoptim
args: [ "--strip-all", "--all-progressive", "--max", "85", "--threshold", "4"]
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@
from setuptools import setup
from setuptools.command.install import install as orig_install

JPEGOPTIM_VERSION = "1.5.4"
JPEGOPTIM_VERSION = "1.5.5"
PY_VERSION = "1" # Python wrapper version

POSTFIX_SHA256 = {
("linux", "x86_64"): (
"x64-linux.zip",
"6dbd823da676dd4b5844b34c5af5b27e1673473a9a065daab2f0ef2f54e78ec9",
"1b3f9f3e92771f49796b3060c7f338e0bb12c71c668d821446772bd92092d865",
),
("darwin", "x86_64"): (
"x64-osx.zip",
"a2819584fa44ac34e6eb56f068f26dfc2e654348db258af64bc032ef5209f17b",
"7ab86a5a0e13b3df7ec496c61978e7a71c275cf1a0d2cc35de07ba8ae0c10b95",
),
("win32", "AMD64"): (
"x64-windows.zip",
"ebd600755558e249b4bc77e5a9072325be164d0327d4ba89531727544600a036",
"ffa037ecc12e002c1c87c334d8ebaed988ec738c3ad606d054272950519b09a8",
),
}
POSTFIX_SHA256[("darwin", "arm64")] = POSTFIX_SHA256[("darwin", "x86_64")]
Expand Down

0 comments on commit 8518c48

Please sign in to comment.