Skip to content

Commit

Permalink
Bump to 2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vijaykiran committed Dec 28, 2021
1 parent 7644459 commit 73ef011
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# Managed by tbump - don't change manually
# And we can't have nice semver (<major>.<minor>.<patch>-<pre-release>-<build>)
# like "-alpha-1" as long as this is open >> https://github.com/pypa/setuptools/issues/2181
package_version = '2.1.1'
package_version = '2.1.2'
description = "Soda SQL Core"

long_description = (pathlib.Path(__file__).parent / "README.md").read_text()
Expand Down
2 changes: 1 addition & 1 deletion core/sodasql/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
SODA_SQL_VERSION = '2.1.1'
SODA_SQL_VERSION = '2.1.2'
2 changes: 1 addition & 1 deletion packages/athena/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
sys.exit(1)

package_name = "soda-sql-athena"
package_version = '2.1.1'
package_version = '2.1.2'
# TODO Add proper description
description = "Soda SQL Amazon Athena"

Expand Down
2 changes: 1 addition & 1 deletion packages/bigquery/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
sys.exit(1)

package_name = "soda-sql-bigquery"
package_version = '2.1.1'
package_version = '2.1.2'
# TODO Add proper description
description = "Soda SQL BigQuery"

Expand Down
2 changes: 1 addition & 1 deletion packages/dbt/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
sys.exit(1)

package_name = "soda-sql-dbt"
package_version = '2.1.1'
package_version = '2.1.2'
# TODO Add proper description
description = "Soda SQL DBT"

Expand Down
2 changes: 1 addition & 1 deletion packages/hive/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
sys.exit(1)

package_name = "soda-sql-hive"
package_version = '2.1.1'
package_version = '2.1.2'
# TODO Add proper description
description = "Soda SQL Apache Hive"

Expand Down
2 changes: 1 addition & 1 deletion packages/mysql/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
sys.exit(1)

package_name = "soda-sql-mysql"
package_version = '2.1.1'
package_version = '2.1.2'
# TODO Add proper description
description = "Soda SQL MySQL"

Expand Down
2 changes: 1 addition & 1 deletion packages/postgresql/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
sys.exit(1)

package_name = "soda-sql-postgresql"
package_version = '2.1.1'
package_version = '2.1.2'
# TODO Add proper description
description = "Soda SQL PostgreSQL"

Expand Down
2 changes: 1 addition & 1 deletion packages/redshift/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
sys.exit(1)

package_name = "soda-sql-redshift"
package_version = '2.1.1'
package_version = '2.1.2'
# TODO Add proper description
description = "Soda SQL Redshift"

Expand Down
2 changes: 1 addition & 1 deletion packages/snowflake/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
sys.exit(1)

package_name = "soda-sql-snowflake"
package_version = '2.1.1'
package_version = '2.1.2'
# TODO Add proper description
description = "Soda SQL Snowflake"

Expand Down
2 changes: 1 addition & 1 deletion packages/spark/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
sys.exit(1)

package_name = "soda-sql-spark"
package_version = '2.1.1'
package_version = '2.1.2'
# TODO Add proper description
description = "Soda SQL Apache Spark"

Expand Down
2 changes: 1 addition & 1 deletion packages/sqlserver/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
sys.exit(1)

package_name = "soda-sql-sqlserver"
package_version = '2.1.1'
package_version = '2.1.2'
# TODO Add proper description
description = "Soda SQL Microsoft SQLServer"

Expand Down
2 changes: 1 addition & 1 deletion packages/trino/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
sys.exit(1)

package_name = "soda-sql-trino"
package_version = '2.1.1'
package_version = '2.1.2'
description = "Soda SQL Trino"

requires = [
Expand Down
2 changes: 1 addition & 1 deletion tbump.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[version]
current = "2.1.1"
current = "2.1.2"

regex = '''
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<prerelease>[a-z]+)(?P<build>\d+))?
Expand Down

0 comments on commit 73ef011

Please sign in to comment.