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

Commit 4e50205

Browse files
committed
Tag for 3.0.0b1 release
1 parent f9936fc commit 4e50205

3 files changed

Lines changed: 28 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22

33
## [Unreleased]
44

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

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

2326
## [3.0.0a2] - 2017-10-27
2427
### Added
@@ -975,7 +978,8 @@ transfer is disabled
975978
#### Added
976979
- Initial release
977980

978-
[Unreleased]: https://github.com/Azure/batch-shipyard/compare/3.0.0a2...HEAD
981+
[Unreleased]: https://github.com/Azure/batch-shipyard/compare/3.0.0b1...HEAD
982+
[3.0.0b1]: https://github.com/Azure/batch-shipyard/compare/3.0.0a2...3.0.0b1
979983
[3.0.0a2]: https://github.com/Azure/batch-shipyard/compare/3.0.0a1...3.0.0a2
980984
[3.0.0a1]: https://github.com/Azure/batch-shipyard/compare/2.9.6...3.0.0a1
981985
[2.9.6]: https://github.com/Azure/batch-shipyard/compare/2.9.5...2.9.6

appveyor.yml

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,11 @@ test_script:
4343
after_test:
4444
- echo is pr %APPVEYOR_PULL_REQUEST_NUMBER% is commit tag %APPVEYOR_REPO_TAG% name %APPVEYOR_REPO_TAG_NAME% branch %APPVEYOR_REPO_BRANCH%
4545
- IF "%APPVEYOR_REPO_TAG%"=="true" IF "%PYTHON_VERSION%"=="3.6" (
46-
echo %APPVEYOR_REPO_TAG_NAME%> site-extension\\version.txt &&
47-
nuget pack site-extension\\batch-shipyard.nuspec -Version %APPVEYOR_REPO_TAG_NAME% &&
48-
7z l batch-shipyard.*.nupkg &&
49-
appveyor PushArtifact batch-shipyard.%APPVEYOR_REPO_TAG_NAME%.nupkg
46+
set UPLOAD_NUGET="1"
47+
echo %APPVEYOR_REPO_TAG_NAME%> site-extension\\version.txt &
48+
nuget pack site-extension\\batch-shipyard.nuspec -Version %APPVEYOR_REPO_TAG_NAME% &
49+
7z l batch-shipyard.*.nupkg &
50+
appveyor PushArtifact batch-shipyard.%APPVEYOR_REPO_TAG_NAME%.nupkg || set UPLOAD_NUGET="0"
5051
)
5152
- ps: >-
5253
if (!($env:APPVEYOR_PULL_REQUEST_NUMBER -eq $null)) {
@@ -167,3 +168,16 @@ deploy:
167168
on:
168169
appveyor_repo_tag: true
169170
PYTHON_VERSION: "3.6"
171+
UPLOAD_NUGET: "1"
172+
- provider: GitHub
173+
tag: $(APPVEYOR_REPO_TAG_NAME)
174+
description: 'Batch Shipyard release'
175+
auth_token:
176+
secure: +f4N6Qsv3HvJyii0Bs+8qBx3YS7+7FJUWbFSiAdEIUDubFQnNkJgFnBw0Ew2SLkv
177+
artifact: /.*\.exe/
178+
draft: true
179+
prerelease: true
180+
force_update: true
181+
on:
182+
appveyor_repo_tag: true
183+
PYTHON_VERSION: "3.6"

convoy/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
2323
# DEALINGS IN THE SOFTWARE.
2424

25-
__version__ = '3.0.0a2'
25+
__version__ = '3.0.0b1'

0 commit comments

Comments
 (0)