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

Commit 0bd8476

Browse files
rel: prep release v0.4.1b0 (#190)
## Which problem is this PR solving? new release ## Short description of the changes - update version in pyproject.toml - update releasing doc for versioning info - update changelog with new entry - remove (gitignored) poetry lock from dockerfiles
1 parent 02cc4bf commit 0bd8476

File tree

5 files changed

+16
-12
lines changed

5 files changed

+16
-12
lines changed

CHANGELOG.md

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

3+
## [0.4.1b0] - 2024-04-09
4+
5+
### Fixes
6+
7+
- maint: Permit updates of indirect dependencies (#184) | @BatmanAoD
8+
9+
### Maintenance
10+
11+
- maint: Update ubuntu image in workflows to latest (#183) | @MikeGoldsmith
12+
- maint: add labels to release.yml for auto-generated grouping (#182) | @JamieDanielson
13+
314
## [0.4.0b0] - 2024-03-06
415

516
### Enhancements

RELEASING.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
11
# Releasing
22

3-
- Use `poetry version patch` to update the version number using `major`, `minor`, `patch`, or the prerelease variants `prepatch` or `prerelease`.
4-
For example, to bump from v1.1.1 to the next patch version:
5-
6-
```shell
7-
> poetry version patch # 1.1.1 -> 1.1.2
8-
```
9-
10-
- Confirm the version number update appears in `src/pyproject.toml`.
3+
- Update the version number in `pyproject.toml`. Our current versioning uses the `b` for `beta`, so a patch bump for `0.4.0b0` would go to `0.4.1b0` and a minor bump from `0.4.1b0` would go to `0.5.0b0`.
114
- Update `CHANGELOG.md` with the changes since the last release. Consider automating with a command such as these two:
125
- `git log $(git describe --tags --abbrev=0)..HEAD --no-merges --oneline > new-in-this-release.log`
136
- `git log --pretty='%C(green)%d%Creset- %s | %an'`

examples/hello-world-flask/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ RUN pip install "poetry==$POETRY_VERSION"
1717
RUN poetry config virtualenvs.create false
1818

1919
# Copy the distro into the image and install deps.
20-
COPY README.md pyproject.toml poetry.lock ./
20+
COPY README.md pyproject.toml ./
2121
COPY src/ ./src/
2222
RUN poetry install
2323

examples/hello-world/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN pip install "poetry==$POETRY_VERSION"
1515
# This image is single purpose, so we won't need to compartmentalize Py deps in virtualenvs.
1616
RUN poetry config virtualenvs.create false
1717

18-
COPY README.md pyproject.toml poetry.lock ./
18+
COPY README.md pyproject.toml ./
1919
COPY src/ ./src/
2020
RUN poetry install
2121

@@ -25,4 +25,4 @@ RUN cd ./examples/hello-world && poetry install
2525

2626
# From this point forward, we're operating on the example app.
2727
WORKDIR /app/examples/hello-world
28-
CMD ["python", "app.py"]
28+
CMD ["python", "app.py"]

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-opentelemetry"
3-
version = "0.4.0b0"
3+
version = "0.4.1b0"
44
description = "Honeycomb OpenTelemetry Distro for Python"
55
authors = ["Honeycomb <[email protected]>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)