Skip to content

release: 1.42.0 #159

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.41.0"
".": "1.42.0"
}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 1.42.0 (2024-02-01)

Full Changelog: [v1.41.0...v1.42.0](https://github.com/orbcorp/orb-python/compare/v1.41.0...v1.42.0)

### Features

* **api:** add `version` to plan ([#160](https://github.com/orbcorp/orb-python/issues/160)) ([de490e8](https://github.com/orbcorp/orb-python/commit/de490e80dd640df0a12132bbccaf692f3312db77))


### Chores

* **internal:** support pre-release versioning ([#158](https://github.com/orbcorp/orb-python/issues/158)) ([3dd41bb](https://github.com/orbcorp/orb-python/commit/3dd41bb0c9673ed434bdb95fc11391f735148117))

## 1.41.0 (2024-01-30)

Full Changelog: [v1.40.0...v1.41.0](https://github.com/orbcorp/orb-python/compare/v1.40.0...v1.41.0)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "orb-billing"
version = "1.41.0"
version = "1.42.0"
description = "The official Python library for the orb API"
readme = "README.md"
license = "Apache-2.0"
Expand Down
2 changes: 2 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
"$schema": "https://raw.githubusercontent.com/stainless-api/release-please/main/schemas/config.json",
"include-v-in-tag": true,
"include-component-in-tag": false,
"versioning": "prerelease",
"prerelease": true,
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": false,
"pull-request-header": "Automated Release PR",
Expand Down
2 changes: 1 addition & 1 deletion src/orb/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless.

__title__ = "orb"
__version__ = "1.41.0" # x-release-please-version
__version__ = "1.42.0" # x-release-please-version
2 changes: 2 additions & 0 deletions src/orb/types/plan.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,3 +203,5 @@ class Plan(BaseModel):
status: Literal["active", "archived", "draft"]

trial_config: TrialConfig

version: int