Skip to content
This repository was archived by the owner on Aug 13, 2025. It is now read-only.

Commit a37a0b4

Browse files
authored
prepare 3.0.0 release (#203)
1 parent e2c43e7 commit a37a0b4

File tree

5 files changed

+16
-6
lines changed

5 files changed

+16
-6
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[bumpversion]
22
commit = False
33
tag = False
4-
current_version = 2.18.0
4+
current_version = 3.0.0
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
66
serialize =
77
{major}.{minor}.{patch}-{release}{build}

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# beeline-python changelog
22

3+
## 3.0.0 2022-01-13
4+
5+
### !!! Breaking Changes !!!
6+
7+
Minimum supported Python version is now 3.5
8+
9+
### Maintenance
10+
11+
- drop python < 3.5 support, update vulnerable deps (#202) | | [@vreynolds](https://github.com/vreynolds)
12+
- gh: add re-triage workflow (#201) | | [@vreynolds](https://github.com/vreynolds)
13+
314
## 2.18.0 2021-12-23
415

516
### Improvements

RELEASING.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
# Releasing
22

3-
1. Add release entry to [changelog](./CHANGELOG.md)
4-
2. Update version using `bump2version --new-version 1.12.0 patch` (NOTE: the `patch` is reqiured for the command to execute but doesn't mean anything as you're supplying a full version)
3+
1. Update version using `bump2version --new-version 1.12.0 patch` (NOTE: the `patch` is reqiured for the command to execute but doesn't mean anything as you're supplying a full version)
4+
2. Add release entry to [changelog](./CHANGELOG.md)
55
3. Open a PR with the above, and merge that into main
66
4. Create new tag on merged commit with the new version (e.g. `v2.3.1`)
77
5. Push the tag upstream (this will kick off the release pipeline in CI)
88
6. Copy change log entry for newest version into draft GitHub release created as part of CI publish steps
9-
7.

beeline/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = '2.18.0' # Update using bump2version
1+
VERSION = '3.0.0' # Update using bump2version

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "honeycomb-beeline"
3-
version = "2.18.0" # Update using bump2version
3+
version = "3.0.0" # Update using bump2version
44
description = "Honeycomb library for easy instrumentation"
55
authors = ["Honeycomb.io <[email protected]>"]
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)