Skip to content
This repository has been archived by the owner on Mar 20, 2023. It is now read-only.

Commit

Permalink
Tag for 3.0.0b1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
alfpark committed Nov 6, 2017
1 parent f9936fc commit 4e50205
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 10 deletions.
14 changes: 9 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@

## [Unreleased]

## [3.0.0b1] - 2017-11-05
### Added
- Singularity support
- Preliminary Windows server support
- Pre-built binaries for CLI for some Linux distributions and Windows
- Singularity support (#135)
- Preliminary Windows server support (#7)
- Pre-built binaries for CLI for some Linux distributions and Windows (#131)
- Windows Docker image for CLI
- Singularity HPCG and TensorFlow-GPU recipe
- Singularity HPCG and TensorFlow-GPU recipes

### Changed
- **Breaking Change:** Many commands have been placed under more
Expand All @@ -19,6 +20,8 @@ more information.
- Retry image configuration error pulls from Docker registries
- AAD MFA token cache on Python2
- Non-native coordination command fix, if not specified
- Include min node counts in autoscale scenarios (#139)
- `jobs tasks list` when there is a failed task (#142)

## [3.0.0a2] - 2017-10-27
### Added
Expand Down Expand Up @@ -975,7 +978,8 @@ transfer is disabled
#### Added
- Initial release

[Unreleased]: https://github.com/Azure/batch-shipyard/compare/3.0.0a2...HEAD
[Unreleased]: https://github.com/Azure/batch-shipyard/compare/3.0.0b1...HEAD
[3.0.0b1]: https://github.com/Azure/batch-shipyard/compare/3.0.0a2...3.0.0b1
[3.0.0a2]: https://github.com/Azure/batch-shipyard/compare/3.0.0a1...3.0.0a2
[3.0.0a1]: https://github.com/Azure/batch-shipyard/compare/2.9.6...3.0.0a1
[2.9.6]: https://github.com/Azure/batch-shipyard/compare/2.9.5...2.9.6
Expand Down
22 changes: 18 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,11 @@ test_script:
after_test:
- echo is pr %APPVEYOR_PULL_REQUEST_NUMBER% is commit tag %APPVEYOR_REPO_TAG% name %APPVEYOR_REPO_TAG_NAME% branch %APPVEYOR_REPO_BRANCH%
- IF "%APPVEYOR_REPO_TAG%"=="true" IF "%PYTHON_VERSION%"=="3.6" (
echo %APPVEYOR_REPO_TAG_NAME%> site-extension\\version.txt &&
nuget pack site-extension\\batch-shipyard.nuspec -Version %APPVEYOR_REPO_TAG_NAME% &&
7z l batch-shipyard.*.nupkg &&
appveyor PushArtifact batch-shipyard.%APPVEYOR_REPO_TAG_NAME%.nupkg
set UPLOAD_NUGET="1"
echo %APPVEYOR_REPO_TAG_NAME%> site-extension\\version.txt &
nuget pack site-extension\\batch-shipyard.nuspec -Version %APPVEYOR_REPO_TAG_NAME% &
7z l batch-shipyard.*.nupkg &
appveyor PushArtifact batch-shipyard.%APPVEYOR_REPO_TAG_NAME%.nupkg || set UPLOAD_NUGET="0"
)
- ps: >-
if (!($env:APPVEYOR_PULL_REQUEST_NUMBER -eq $null)) {
Expand Down Expand Up @@ -167,3 +168,16 @@ deploy:
on:
appveyor_repo_tag: true
PYTHON_VERSION: "3.6"
UPLOAD_NUGET: "1"
- provider: GitHub
tag: $(APPVEYOR_REPO_TAG_NAME)
description: 'Batch Shipyard release'
auth_token:
secure: +f4N6Qsv3HvJyii0Bs+8qBx3YS7+7FJUWbFSiAdEIUDubFQnNkJgFnBw0Ew2SLkv
artifact: /.*\.exe/
draft: true
prerelease: true
force_update: true
on:
appveyor_repo_tag: true
PYTHON_VERSION: "3.6"
2 changes: 1 addition & 1 deletion convoy/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.

__version__ = '3.0.0a2'
__version__ = '3.0.0b1'

0 comments on commit 4e50205

Please sign in to comment.