Skip to content

Commit f252e27

Browse files
committedSep 10, 2023
Prepare for release v2.9
1 parent 9dd7676 commit f252e27

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed
 

‎.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
workflows:
5959
version: 2
6060

61-
test:
61+
CircleCI:
6262
jobs: &all-tests
6363
- py38
6464
- py39

‎CHANGELOG

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
imgp v2.9
2+
2023-09-10
3+
4+
- Support converting P mode PNGs
5+
- Fix AttributeError: module 'PIL.Image' has no attribute 'Resampling'
6+
- Fix ANTIALIAS is deprecated and will be removed in Pillow 10
7+
- Add Python 3.11 support
8+
- Remove support for Python 3.7 (EOL)
9+
10+
-------------------------------------------------------------------------------
11+
112
imgp v2.8
213
2020-12-01
314

‎imgp

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ pad = '_IMGP' # output file suffix when --overwrite is unused
5757
png_ip = Image.Resampling.LANCZOS # default interpolation for PNG
5858
fill_color = '#ffffff' # BG color to strip alpha channel
5959
init_time = time.time() # profile the total time taken
60-
_VERSION_ = '2.8' # current program version
60+
_VERSION_ = '2.9' # current program version
6161

6262
# Globals for multiprocessing
6363
pool = None

‎imgp.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "IMGP" "1" "01 Dec 2020" "Version 2.8" "User Commands"
1+
.TH "IMGP" "1" "10 Sep 2023" "Version 2.9" "User Commands"
22
.SH NAME
33
imgp \- Resize, rotate JPEG and PNG images.
44
.SH SYNOPSIS

1 commit comments

Comments
 (1)

jarun commented on Sep 10, 2023

@jarun
OwnerAuthor
Please sign in to comment.