Skip to content

Commit bd354cc

Browse files
chore(internal): version bump (#259)
1 parent 7b428e9 commit bd354cc

File tree

5 files changed

+16
-5
lines changed

5 files changed

+16
-5
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.0"
2+
".": "4.0.0-alpha.1"
33
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The REST API documentation can be found on [developers.intercom.com](https://dev
1616

1717
```sh
1818
# install from PyPI
19-
pip install python-intercom
19+
pip install --pre python-intercom
2020
```
2121

2222
## Usage

bin/check-release-environment

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,20 @@
11
#!/usr/bin/env bash
22

3+
warnings=()
34
errors=()
45

56
if [ -z "${PYPI_TOKEN}" ]; then
6-
errors+=("The INTERCOM_PYPI_TOKEN secret has not been set. Please set it in either this repository's secrets or your organization secrets.")
7+
warnings+=("The INTERCOM_PYPI_TOKEN secret has not been set. Please set it in either this repository's secrets or your organization secrets.")
8+
fi
9+
10+
lenWarnings=${#warnings[@]}
11+
12+
if [[ lenWarnings -gt 0 ]]; then
13+
echo -e "Found the following warnings in the release environment:\n"
14+
15+
for warning in "${warnings[@]}"; do
16+
echo -e "- $warning\n"
17+
done
718
fi
819

920
lenErrors=${#errors[@]}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "python-intercom"
3-
version = "0.1.0"
3+
version = "4.0.0-alpha.1"
44
description = "The official Python library for the intercom API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/python_intercom/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "python_intercom"
4-
__version__ = "0.1.0" # x-release-please-version
4+
__version__ = "4.0.0-alpha.1" # x-release-please-version

0 commit comments

Comments
 (0)