Skip to content

Commit 4e1da89

Browse files
committed
Update version to 0.1.2
1 parent 7aeff51 commit 4e1da89

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# Changes to this file may cause incorrect behavior and will be lost if the file is regenerated.
44

5-
version: 0.1.1.{build}
5+
version: 0.1.2.{build}
66
image: Visual Studio 2019
77

88
environment:

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- checkout
14-
- run: echo "xtd 0.1.1 on linux"
14+
- run: echo "xtd 0.1.2 on linux"
1515
- run:
1616
name: Installing apt
1717
command: 'sudo apt-get update && sudo apt-get install -y sudo && sudo rm -rf /var/lib/apt/lists/*'

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ addons:
1111

1212
matrix:
1313
include:
14-
- env: TEST="Build xtd 0.1.1 on macOS"
14+
- env: TEST="Build xtd 0.1.2 on macOS"
1515
os: osx
1616
osx_image: xcode12.2
1717
script: scripts/travis/build_xtd_on_macos.sh

install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
#
44
# Changes to this file may cause incorrect behavior and will be lost if the file is regenerated.
55

6-
export xtd_version=0.1.1
6+
export xtd_version=0.1.2
77
scripts/install/install.sh "$@"

install.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
::
44
:: Changes to this file may cause incorrect behavior and will be lost if the file is regenerated.
55

6-
set xtd_version=0.1.1
6+
set xtd_version=0.1.2
77
call scripts\install\install.cmd %*

scripts/cmake/xtd_version.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# xtd Version
2-
set(XTD_VERSION 0.1.1)
2+
set(XTD_VERSION 0.1.2)

src/xtd.core/src/xtd/environment_version.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
#include "../include/xtd/environment.h"
66

77
xtd::version xtd::environment::version() {
8-
return xtd::version::parse("0.1.1");
8+
return xtd::version::parse("0.1.2");
99
}

0 commit comments

Comments
 (0)