Skip to content

Commit

Permalink
rel: Prepare v3.5.1 release (#258)
Browse files Browse the repository at this point in the history
## 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
  • Loading branch information
MikeGoldsmith authored Jan 19, 2023
1 parent 4557823 commit 83816a4
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = False
tag = False
current_version = 3.5.0
current_version = 3.5.1
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
serialize =
{major}.{minor}.{patch}-{release}{build}
Expand Down
31 changes: 30 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,36 @@
# beeline-python changelog

## 3.5.1 2023-01-19

### Fixes

- Only try to calculate query duration when we have start time (#255) | [@MikeGoldsmith](https://github.com/MikeGoldsmith)
- Parse version number for beeline-python/{VERSION} addition (#257) | [@emilyashley](https://github.com/emilyashley)

### Maintenance

- Give dependabot PRs better title (#250) | [@vreynolds](https://github.com/vreynolds)
- Update validate PR title workflow (#245) | [@pkanal](https://github.com/pkanal)
- Validate PR title (#244) | [@pkanal](https://github.com/pkanal)
- Add release file (#240) | [@vreynolds](https://github.com/vreynolds)
- Add new project workflow (#239) | [@vreynolds](https://github.com/vreynolds)
- Fix ci build (#249) | [@vreynolds](https://github.com/vreynolds)
- Delete workflows for old board (#241) | [@vreynolds](https://github.com/vreynolds)
- Update releasing notes (#236) | [@emilyashley](https://github.com/emilyashley)

- Bump pycodestyle from 2.9.1 to 2.10.0 (#246)
- bump coverage from 6.5.0 to 7.0.5 (#256)
- bump mock from 4.0.3 to 5.0.0 (#254)
- bump setuptools from 65.4.1 to 65.5.1 (#252)
- Bump certifi from 2022.6.15 to 2022.12.7 in /examples/flask (#247)
- Bump certifi from 2022.6.15.1 to 2022.12.7 (#248)
- Bump django from 3.2.15 to 3.2.16 (#242)
- Bump flask from 2.1.0 to 2.2.2 (#238)
- Bump coverage from 6.4.4 to 6.5.0 (#237)

## 3.5.0 2022-09-09

⚠️ Minimum supported Python version is now 3.7 ⚠️
⚠️ Minimum supported Python version is now 3.7 ⚠️
### Maintenance

- Drop Python 3.5, 3.6 Support (#233) | [@emilyashley](https://github.com/emilyashley)
Expand Down
2 changes: 1 addition & 1 deletion beeline/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '3.5.0' # Update using bump2version
VERSION = '3.5.1' # Update using bump2version
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "honeycomb-beeline"
version = "3.5.0" # Update using bump2version
version = "3.5.1" # Update using bump2version
description = "Honeycomb library for easy instrumentation"
authors = ["Honeycomb.io <feedback@honeycomb.io>"]
license = "Apache-2.0"
Expand Down

0 comments on commit 83816a4

Please sign in to comment.