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

Commit 83816a4

Browse files
rel: Prepare v3.5.1 release (#258)
## Which problem is this PR solving? Prepares the v3.5.1 release. ## Short description of the changes - Updates version in version.py, pyproject.toml and bumpversion.cfg - Adds changelog entry
1 parent 4557823 commit 83816a4

File tree

4 files changed

+33
-4
lines changed

4 files changed

+33
-4
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 = 3.5.0
4+
current_version = 3.5.1
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: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,36 @@
11
# beeline-python changelog
2+
3+
## 3.5.1 2023-01-19
4+
5+
### Fixes
6+
7+
- Only try to calculate query duration when we have start time (#255) | [@MikeGoldsmith](https://github.com/MikeGoldsmith)
8+
- Parse version number for beeline-python/{VERSION} addition (#257) | [@emilyashley](https://github.com/emilyashley)
9+
10+
### Maintenance
11+
12+
- Give dependabot PRs better title (#250) | [@vreynolds](https://github.com/vreynolds)
13+
- Update validate PR title workflow (#245) | [@pkanal](https://github.com/pkanal)
14+
- Validate PR title (#244) | [@pkanal](https://github.com/pkanal)
15+
- Add release file (#240) | [@vreynolds](https://github.com/vreynolds)
16+
- Add new project workflow (#239) | [@vreynolds](https://github.com/vreynolds)
17+
- Fix ci build (#249) | [@vreynolds](https://github.com/vreynolds)
18+
- Delete workflows for old board (#241) | [@vreynolds](https://github.com/vreynolds)
19+
- Update releasing notes (#236) | [@emilyashley](https://github.com/emilyashley)
20+
21+
- Bump pycodestyle from 2.9.1 to 2.10.0 (#246)
22+
- bump coverage from 6.5.0 to 7.0.5 (#256)
23+
- bump mock from 4.0.3 to 5.0.0 (#254)
24+
- bump setuptools from 65.4.1 to 65.5.1 (#252)
25+
- Bump certifi from 2022.6.15 to 2022.12.7 in /examples/flask (#247)
26+
- Bump certifi from 2022.6.15.1 to 2022.12.7 (#248)
27+
- Bump django from 3.2.15 to 3.2.16 (#242)
28+
- Bump flask from 2.1.0 to 2.2.2 (#238)
29+
- Bump coverage from 6.4.4 to 6.5.0 (#237)
30+
231
## 3.5.0 2022-09-09
332

4-
⚠️ Minimum supported Python version is now 3.7 ⚠️
33+
⚠️ Minimum supported Python version is now 3.7 ⚠️
534
### Maintenance
635

736
- Drop Python 3.5, 3.6 Support (#233) | [@emilyashley](https://github.com/emilyashley)

beeline/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = '3.5.0' # Update using bump2version
1+
VERSION = '3.5.1' # 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 = "3.5.0" # Update using bump2version
3+
version = "3.5.1" # 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)