Skip to content

Commit 4fe0fc9

Browse files
authored
INTPYTHON-589 Fix invocation of version bump script in release process (#304)
1 parent 00fb85b commit 4fe0fc9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/scripts/bump-version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
set -eu
33

44
CURRENT_VERSION=$(NO_EXT=1 python setup.py --version)
5-
sed -i '' "s/__version__ = \"${CURRENT_VERSION}\"/__version__ = \"$1\"/" "pymongoarrow/version.py"
5+
sed -i "s/__version__ = \"${CURRENT_VERSION}\"/__version__ = \"$1\"/" "pymongoarrow/version.py"

bindings/python/pymongoarrow/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "1.7.2"
15+
__version__ = "1.8.0.dev0"
1616

1717
_MIN_LIBBSON_VERSION = "1.23.1"

0 commit comments

Comments
 (0)