Updated FlatBuffers release process (markdown)

Wouter van Oortmerssen 2020-03-12 16:36:51 -07:00
parent 82e8319f8a
commit fd594b7e32
1 changed files with 4 additions and 2 deletions

@ -33,8 +33,9 @@ Steps to release a new version of FlatBuffers to github:
* For Java: * For Java:
* (version already changed in pom.xml) * (version already changed in pom.xml)
* `mvn clean deploy -P release` * `mvn clean deploy -P release`
* `mvn release:clean release:prepare` * Not needed / working?
* `mvn release:perform` * `mvn release:clean release:prepare`
* `mvn release:perform`
* (see http://central.sonatype.org/pages/apache-maven.html for details). * (see http://central.sonatype.org/pages/apache-maven.html for details).
* This requires an account with oss.sonatype.org, a gpg key registered with a keyserver, and your user/pass in .m2/settings.xml (Maven) to work, among other mysterious things. * This requires an account with oss.sonatype.org, a gpg key registered with a keyserver, and your user/pass in .m2/settings.xml (Maven) to work, among other mysterious things.
* Note: some of the above commands tend to error out, since it is all some crazy async complex system.. but it will then succeed later anyway (shows up the new version on maven central). * Note: some of the above commands tend to error out, since it is all some crazy async complex system.. but it will then succeed later anyway (shows up the new version on maven central).
@ -43,6 +44,7 @@ Steps to release a new version of FlatBuffers to github:
* in dir grpc, `mvn deploy` * in dir grpc, `mvn deploy`
* For Dart: * For Dart:
* Run `cd dart && sh publish.sh` * Run `cd dart && sh publish.sh`
* Results here: https://pub.dev/packages/flat_buffers
* For Python: * For Python:
* `cd python` * `cd python`
* `export VERSION="1.9"` * `export VERSION="1.9"`