]> git.gag.com Git - fw/altos/blobdiff - Releasing
doc: Add 1.9.22 release notes
[fw/altos] / Releasing
index 4c989616280c077e4366e51e2f4c657c89928a33..85a6ca57b315434ccf22c1122a60dd2b19f760d0 100644 (file)
--- a/Releasing
+++ b/Releasing
@@ -15,6 +15,8 @@ Adding a product to the release
 
        Add the firmware to Releasing
 
+       Add new product specs to doc/specs.inc
+
 These are Keith's notes on how to do a release
 
        - update the version and date in configure.ac if Bdale hasn't already
@@ -38,17 +40,20 @@ These are Bdale's notes on how to do a release.
                sudo cowbuilder --update
 
        - make sure fat build environment is up to date
-               sudo apt update && sudo apt upgrade
+               sudo apt update && sudo apt upgrade && sudo apt autoremove
 
        - ensure i386 build support is available, and we have tools to build
          installers for Windows and Mac OS X
 
                sudo apt update
-               sudo apt install genisoimage nsis \
+               sudo apt install genisoimage nsis gcc-avr avr-libc \
                        gcc-i686-linux-gnu gcc-aarch64-linux-gnu \
-                       gcc-arm-linux-gnueabi gcc-arm-linux-gnueabihf
+                       gcc-arm-linux-gnueabi gcc-arm-linux-gnueabihf \
+                       gcc-mingw-w64-i686-posix gcc-mingw-w64-x86-64-win32
 
-       - make sure jsign is installed so we can sign Windows installers
+       - make sure jsign is installed so we can sign Windows installers:
+       
+       https://github.com/ebourg/jsign/releases/download/5.0/jsign_5.0_all.deb
 
        - make sure ~/web/altusmetrum has no pending pullable commits
 
@@ -72,8 +77,8 @@ These are Bdale's notes on how to do a release.
          like debian are already pulled
 
         git log > ChangeLog
-       git commit -a
-       git tag -a <version>                    # full x.y.z version
+       git commit -a -m'update ChangeLog for <version> release'
+       git tag -a <version> -m'Releasing <version>'    # full x.y.z version
 
        - make sure .git/gbp.conf set to use branch-<version> as upstream
 
@@ -87,6 +92,9 @@ These are Bdale's notes on how to do a release.
 
         git commit -n debian/changelog -m "update changelog for Debian build"
 
+       - review debian/patches, all should be obsoleted by a new release, so
+         take care of any that are there and commit the changes
+
        - if this is a -1 release, then
                gbp buildpackage --git-no-pristine-tar \
                        --git-upstream-branch=branch-<version> \ # eg 1.3
@@ -111,31 +119,31 @@ These are Bdale's notes on how to do a release.
        - store a stable copy of ARM binaries for production use
 
        cp src/chaoskey-v1.0/{*.elf,*.ihx,*.bin,*.map} \
-          src/easymega-v[1-2].0/{*.elf,*.ihx,*.map} \
+          src/easymega-v[1-3].0/{*.elf,*.ihx,*.map} \
           src/easymini-v[1-3].0/{*.elf,*.ihx,*.map} \
           src/easymotor-v3/{*.elf,*.ihx,*.map} \
-          src/easytimer-v1/{*.elf,*.ihx,*.map} \
+          src/easytimer-v[1-2]/{*.elf,*.ihx,*.map} \
           src/telebt-v[3-4].0/{*.elf,*.ihx,*.map} \
           src/teledongle-v3.0/{*.elf,*.ihx,*.map} \
-          src/telegps-v[1-3].0/{*.elf,*.ihx,*.map} \
-          src/telemega-v[1-6].0/{*.elf,*.ihx,*.map} \
+          src/telegps-v[1-4].0/{*.elf,*.ihx,*.map} \
+          src/telemega-v[1-7].0/{*.elf,*.ihx,*.map} \
           src/telemetrum-v[2-4].0/{*.elf,*.ihx,*.map} \
           src/telemini-v3.0/{*.elf,*.ihx,*.map} \
-          src/telelco-v2.0/{*.elf,*.ihx,*.map} \
+          src/telelco-v[2-3].0/{*.elf,*.ihx,*.map} \
           src/telefireeight-v[1-2].0/{*.elf,*.ihx,*.map} \
           ~/altusmetrumllc/Binaries/
        cp src/chaoskey-v1.0/flash-loader/{*.elf,*.bin,*.map} \
-          src/easymega-v[1-2].0/flash-loader/*.elf \
+          src/easymega-v[1-3].0/flash-loader/*.elf \
           src/easymini-v[1-3].0/flash-loader/*.elf \
           src/easymotor-v3/flash-loader/*.elf \
-          src/easytimer-v1/flash-loader/*.elf \
+          src/easytimer-v[1-2]/flash-loader/*.elf \
           src/telebt-v[3-4].0/flash-loader/{*.elf,*.bin,*.map} \
           src/teledongle-v3.0/flash-loader/*.elf \
-          src/telegps-v[1-3].0/flash-loader/{*.elf,*.bin,*.map} \
-          src/telemega-v[1-6].0/flash-loader/*.elf \
+          src/telegps-v[1-4].0/flash-loader/{*.elf,*.bin,*.map} \
+          src/telemega-v[1-7].0/flash-loader/*.elf \
           src/telemetrum-v[2-4].0/flash-loader/*.elf \
           src/telemini-v3.0/flash-loader/{*.elf,*.bin,*.map} \
-          src/telelco-v2.0/flash-loader/*.elf \
+          src/telelco-v[2-3].0/flash-loader/*.elf \
           src/telefireeight-v[1-2].0/flash-loader/*.elf \
           ~/altusmetrumllc/Binaries/loaders/
        (cd ~/altusmetrumllc ; git add Binaries ; git commit -a)