2019-05-20 20:39:51 -04:00
@ echo off
2019-06-18 16:40:36 -04:00
2020-05-01 20:53:58 -04:00
set oldver = 4.2.24
set newver = 4.2.25
2019-06-18 16:40:36 -04:00
2019-05-21 21:13:47 -04:00
echo ..
2020-02-17 22:31:09 -05:00
echo =========================================================================
2019-06-18 16:40:36 -04:00
echo upgrade and release fhir.core from %oldver% -SNAPSHOT to %newver% -SNAPSHOT
2020-02-17 22:31:09 -05:00
echo =========================================================================
2019-05-21 21:13:47 -04:00
echo ..
2019-03-15 14:26:38 -04:00
2019-06-18 16:40:36 -04:00
call mvn versions:set -DnewVersion=%newver% -SNAPSHOT
2019-12-03 13:59:22 -05:00
2020-02-06 18:30:17 -05:00
call git commit -t v%newver% -a -m " Release new version %newver% "
2020-04-08 20:26:39 -04:00
call git tag v%newver%
2020-02-06 18:30:17 -05:00
2019-03-15 14:26:38 -04:00
call git push origin master
2019-12-02 23:26:06 -05:00
call " C:\tools\fnr.exe " -dir " C:\work\org.hl7.fhir\build " -fileMask " *.xml " -find " %oldver% -SNAPSHOT " -replace " %newver% -SNAPSHOT " -count 8
call " C:\tools\fnr.exe " -dir " C:\work\org.hl7.fhir\fhir-ig-publisher " -fileMask " *.xml " -find " %oldver% -SNAPSHOT " -replace " %newver% -SNAPSHOT " -count 2
call " C:\tools\fnr.exe " -dir " C:\work\org.hl7.fhir\latest-ig-publisher " -fileMask " *.html " -find " %oldver% " -replace " %newver% " -count 1
call " C:\tools\fnr.exe " -dir " C:\work\org.hl7.fhir\latest-ig-publisher " -fileMask " *.json " -find " %oldver% " -replace " %newver% " -count 1
2019-09-14 12:51:12 -04:00
call mvn clean deploy -Dmaven.test.redirectTestOutputToFile=false -DdeployAtEnd=true
2019-09-14 12:35:50 -04:00
IF %ERRORLEVEL% NEQ 0 (
GOTO DONE
)
2020-04-29 00:57:18 -04:00
call " C:\tools\versionNotes.exe " -fileName C:\work\org.hl7.fhir\latest-ig-publisher\release-notes-validator.md -version %newver% -fileDest C:\temp\current-release-notes-validator.md -url https://storage.googleapis.com/ig-build/org.hl7.fhir.validator.jar -maven https://oss.sonatype.org/service/local/artifact/maven/redirect?r=snapshots& g=ca.uhn.hapi.fhir& a=org.hl7.fhir.validation.cli& v=%newver% -SNAPSHOT& e=jar
call gsutil cp -a public-read org.hl7.fhir.validation.cli\target\org.hl7.fhir.validation.cli-%newver% -SNAPSHOT.jar gs://ig-build/org.hl7.fhir.validator.jar
2020-02-08 16:14:30 -05:00
2019-05-21 21:45:02 -04:00
cd ..\latest-ig-publisher
2020-04-29 00:57:18 -04:00
call git commit -a -m " Release new validator version %newver% -SNAPSHOT "
2019-05-21 21:45:02 -04:00
call git push origin master
2019-05-22 23:39:21 -04:00
cd ..\org.hl7.fhir.core
2019-12-19 16:01:46 -05:00
2020-04-29 00:57:18 -04:00
call python c:\tools\zulip-api\zulip\zulip\send.py --stream committers/notification --subject " java core " -m " New Java Core v %newver% -SNAPSHOT released. New Validator at https://oss.sonatype.org/service/local/artifact/maven/redirect?r=snapshots&g=ca.uhn.hapi.fhir&a=org.hl7.fhir.validation.cli&v= %newver% -SNAPSHOT&e=jar, and also deployed at https://storage.googleapis.com/ig-build/org.hl7.fhir.validator.jar " --config-file zuliprc
2020-02-08 16:14:30 -05:00
call python c:\tools\zulip-api\zulip\zulip\send.py --stream tooling/releases --subject " Validator " --config-file zuliprc < C:\temp\current-release-notes-validator.md
del C:\temp\current-release-notes-validator.md
2019-09-14 12:35:50 -04:00
: DONE
2019-03-15 14:26:38 -04:00
echo ===============================================================
echo all done
echo ===============================================================
pause