Skip to content

Commit 73baaf6

Browse files
committed
Bump version to 1.3.0
1 parent 101184e commit 73baaf6

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

CHANGELOG.md

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

33
# Changelog
44

5-
## 1.3.0 - Unreleased
5+
## 1.3.0 - 2024-07-01
66

77
### Changed
88

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = 'redditwarp'
7-
version = "1.2.0.post.dev"
7+
version = "1.3.0"
88
description = "A library for interacting with the Reddit API."
99
authors = ["Pyprohly <pyprohly@gmail.com>"]
1010
readme = "README.md"

redditwarp/__about__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@
4747
from __future__ import annotations
4848

4949
version_major: int = 1
50-
version_minor: int = 2
50+
version_minor: int = 3
5151
version_micro: int = 0
52-
version_extra: str = '.post.dev'
52+
version_extra: str = ''
5353

5454
version_patch: int = version_micro
5555
version_triad: tuple[int, int, int] = (version_major, version_minor, version_micro)

0 commit comments

Comments
 (0)