From 654a0c44d3e8a4ef563b166d741906339a187253 Mon Sep 17 00:00:00 2001 From: msramalho <19508417+msramalho@users.noreply.github.com> Date: Mon, 13 Feb 2023 15:18:35 +0000 Subject: [PATCH] Bump version to v0.1.1 for release --- .github/workflows/python-publish.yaml | 2 +- instagram_locations/version.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-publish.yaml b/.github/workflows/python-publish.yaml index 5ce8e63..8bfeb34 100644 --- a/.github/workflows/python-publish.yaml +++ b/.github/workflows/python-publish.yaml @@ -12,7 +12,7 @@ on: release: types: [published] push: - branches: [ "main" ] + branches: [ "main", "pypi" ] tags: [ "v*.*.*" ] permissions: diff --git a/instagram_locations/version.py b/instagram_locations/version.py index ab2de66..ae2d823 100644 --- a/instagram_locations/version.py +++ b/instagram_locations/version.py @@ -3,7 +3,7 @@ _MAJOR = "0" _MINOR = "1" # On main and in a nightly release the patch should be one ahead of the last # released build. -_PATCH = "0" +_PATCH = "1" # This is mainly for nightly builds which have the suffix ".dev$DATE". See # https://semver.org/#is-v123-a-semantic-version for the semantics. _SUFFIX = "" diff --git a/setup.py b/setup.py index f63729f..7a3bbd4 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setuptools.setup( name="instagram-location-search", version="1.0.0", author="Bellingcat", - author_email="tech@bellingcat.com" + author_email="tech@bellingcat.com", packages=["instagram_locations"], description="Finds Instagram location IDs near a specified latitude and longitude.", long_description=long_description,