Skip to content

Commit

Permalink
bitrise-init update to 0.9.13 (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
godrei authored Sep 7, 2016
1 parent b9662e8 commit aab9c90
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 14 deletions.
2 changes: 1 addition & 1 deletion deplock.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"dep_locks": [
{
"url": "https://github.com/bitrise-core/bitrise-init.git",
"revision": "b327a3a86c3123e74185f9078b9960fb08b3e990"
"revision": "72a02d485a425b5d8d26d4fc7f70a6c89d8511c7"
}
]
}
10 changes: 8 additions & 2 deletions go/src/github.com/bitrise-core/bitrise-init/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
## Changelog (Current version: 0.9.12)
## Changelog (Current version: 0.9.13)

-----------------

### 0.9.13 (2016 Sep 07)

* [48c10ed] step version updates (#42)
* [e3d1e61] prepare for 0.9.13
* [a0685c6] step version updates (#41)

### 0.9.12 (2016 Aug 10)

* [405e2ef] step versions
Expand Down Expand Up @@ -117,4 +123,4 @@

-----------------

Updated: 2016 Aug 10
Updated: 2016 Sep 07
2 changes: 1 addition & 1 deletion go/src/github.com/bitrise-core/bitrise-init/bitrise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ workflows:
2, Export RELEASE_VERSION
3, Create binaries
envs:
- RELEASE_VERSION: 0.9.12
- RELEASE_VERSION: 0.9.13
after_run:
- _export_release_version
- create_binaries
Expand Down
18 changes: 9 additions & 9 deletions go/src/github.com/bitrise-core/bitrise-init/steps/steps.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,34 +13,34 @@ const (
activateSSHKeyVersion = "3.1.1"

gitCloneID = "git-clone"
gitCloneVersion = "3.3.3"
gitCloneVersion = "3.3.4"

certificateAndProfileInstallerID = "certificate-and-profile-installer"
certificateAndProfileInstallerVersion = "1.6.0"

deployToBitriseIoID = "deploy-to-bitrise-io"
deployToBitriseIoVersion = "1.2.4"
deployToBitriseIoVersion = "1.2.5"

scriptID = "script"
scriptVersion = "1.1.2"
scriptVersion = "1.1.3"

// Android Step IDs
gradleRunnerID = "gradle-runner"
gradleRunnerVersion = "1.3.1"
gradleRunnerVersion = "1.4.1"

// Fastlane Step IDs
fastlaneID = "fastlane"
fastlaneVersion = "2.2.0"

// iOS Step IDs
cocoapodsInstallID = "cocoapods-install"
cocoapodsInstallVersion = "1.5.4"
cocoapodsInstallVersion = "1.5.7"

recreateUserSchemesID = "recreate-user-schemes"
recreateUserSchemesVersion = "0.9.1"
recreateUserSchemesVersion = "0.9.2"

xcodeArchiveID = "xcode-archive"
xcodeArchiveVersion = "1.8.5"
xcodeArchiveVersion = "1.9.1"

xcodeTestID = "xcode-test"
xcodeTestVersion = "1.14.0"
Expand All @@ -50,13 +50,13 @@ const (
xamarinUserManagementVersion = "1.0.2"

nugetRestoreID = "nuget-restore"
nugetRestoreVersion = "0.9.2"
nugetRestoreVersion = "0.9.3"

xamarinComponentsRestoreID = "xamarin-components-restore"
xamarinComponentsRestoreVersion = "0.9.0"

xamarinBuilderID = "xamarin-builder"
xamarinBuilderVersion = "1.3.6"
xamarinBuilderVersion = "1.4.0"
)

func stepIDComposite(ID, version string) string {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package version

// VERSION ...
const VERSION = "0.9.12"
const VERSION = "0.9.13"

0 comments on commit aab9c90

Please sign in to comment.