Skip to content

Commit d043334

Browse files
committed
release: prepare v0.6.23 release
1 parent 791ba4a commit d043334

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

HISTORY.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
Release History
44
---------------
55

6+
0.6.23 (2023-11-02)
7+
+++++++++++++++++++
8+
9+
- fix: #912 Pillow<=9.5 constraint entails security vulnerability
10+
11+
612
0.6.22 (2023-08-28)
713
+++++++++++++++++++
814

Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ BEHAVE = behave
22
MAKE = make
33
PYTHON = python
44
SETUP = $(PYTHON) ./setup.py
5+
TWINE = $(PYTHON) -m twine
56

67
.PHONY: accept build clean cleandocs coverage docs opendocs
78

@@ -40,3 +41,9 @@ docs:
4041

4142
opendocs:
4243
open docs/.build/html/index.html
44+
45+
test-upload: build
46+
$(TWINE) upload --repository testpypi dist/*
47+
48+
upload: clean build
49+
$(TWINE) upload dist/*

pptx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
"""Initialization module for python-pptx package."""
44

5-
__version__ = "0.6.22"
5+
__version__ = "0.6.23"
66

77

88
import pptx.exc as exceptions

0 commit comments

Comments
 (0)