Skip to content

Commit 2a45d27

Browse files
authored
Version bump to 1.1 (#508)
1 parent 378037b commit 2a45d27

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0.0
2+
current_version = 1.1.0
33
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
44
serialize =
55
{major}.{minor}.{patch}

build_scripts/debian/build.sh

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

3-
CLI_VERSION=1.0.0
3+
CLI_VERSION=1.1.0
44

55
if [ -z "$1" ]
66
then

build_scripts/rpm/mssql-cli.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
%define name mssql-cli
1212
%define release 1%{?dist}
1313
%define time_stamp %(date +%y%m%d%H%M)
14-
%define base_version 1.0.0
14+
%define base_version 1.1.0
1515
%define python_dir %{_builddir}/python_env
1616
%define python_build_src /root/python_build_src
1717
%define python_build /root/python_build

mssqlcli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.0'
1+
__version__ = '1.1.0'

release_scripts/Packages.Microsoft/publish.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,15 @@ if [[ ${3,,} = '--upload' ]]; then
5959
is_upload='True'
6060

6161
# download latest stable deb and rpm packages
62-
wget https://mssqlcli.blob.core.windows.net/daily/deb/mssql-cli_1.0.0-1_all.deb --directory-prefix=/root/
63-
wget https://mssqlcli.blob.core.windows.net/daily/rpm/mssql-cli-1.0.0-1.el7.x86_64.rpm --directory-prefix=/root/
62+
wget https://mssqlcli.blob.core.windows.net/daily/deb/mssql-cli_1.1.0-1_all.deb --directory-prefix=/root/
63+
wget https://mssqlcli.blob.core.windows.net/daily/rpm/mssql-cli-1.1.0-1.el7.x86_64.rpm --directory-prefix=/root/
6464
else
6565
is_upload='False'
6666
fi
6767

6868
local_repo=$1
69-
deb_pkg=/root/mssql-cli_1.0.0-1_all.deb
70-
rpm_pkg=/root/mssql-cli-1.0.0-1.el7.x86_64.rpm
69+
deb_pkg=/root/mssql-cli_1.1.0-1_all.deb
70+
rpm_pkg=/root/mssql-cli-1.1.0-1.el7.x86_64.rpm
7171

7272
# build url_match_string to get repo ID's from above URL names
7373
url_match_str=""

0 commit comments

Comments
 (0)