Skip to content

Commit 13f39f3

Browse files
Ken KundertKen Kundert
authored andcommitted
bump version to 1.30
1 parent d0a7393 commit 13f39f3

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

.bump.cfg.nt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
major: 1
2-
minor: 29
3-
patch: 4
2+
minor: 30
3+
patch: 0
44
revision: 0
55
type: release
66
files:

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Inform — Print & Logging Utilities
44
|downloads| |build status| |coverage| |rtd status| |pypi version| |anaconda version| |python version|
55

66
:Author: Ken Kundert
7-
:Version: 1.29.4
8-
:Released: 2024-06-05
7+
:Version: 1.30
8+
:Released: 2024-06-07
99

1010
A package that provides specialized print functions that are used when
1111
communicating with the user. It allows you to easily print attractive,

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
# built documents.
5656
#
5757
# The full version, including alpha/beta/rc tags.
58-
release = '1.29.4'
58+
release = '1.30'
5959
# The short X.Y version.
6060
version = '.'.join(release.split('.')[0:2])
6161

doc/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
Inform: Print & Logging Utilities
1111
=================================
1212

13-
| Version: 1.29.4
14-
| Released: 2024-06-05
13+
| Version: 1.30
14+
| Released: 2024-06-07
1515
| Please post all bugs and suggestions at
1616
`Inform Issues <https://github.com/KenKundert/inform/issues>`_
1717
(or contact me directly at

doc/releases.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Releases
66
Latest development release
77
--------------------------
88

9-
| Version: 1.29.4
10-
| Released: 2024-06-05
9+
| Version: 1.30
10+
| Released: 2024-06-07
1111
1212
- Added :class:`truth` utility class.
1313
- Added *render_num* argument to :class:`plural`.

inform/inform.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
from textwrap import dedent as tw_dedent, fill
1818

1919
# Globals {{{1
20-
__version__ = '1.29.4'
21-
__released__ = '2024-06-05'
20+
__version__ = '1.30'
21+
__released__ = '2024-06-07'
2222
INFORMER = None
2323
NOTIFIER = 'notify-send'
2424
STREAM_POLICIES = {

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "inform"
3-
version = '1.29.4'
3+
version = '1.30'
44
description = 'print & logging utilities for communicating with user'
55
readme = "README.rst"
66
keywords = ["inform", "logging", "printing"]

0 commit comments

Comments
 (0)