Bläddra i källkod

New release that fixes typo in documentation.

Claudio Gomes 3 år sedan
förälder
incheckning
f24de7799e
4 ändrade filer med 9 tillägg och 7 borttagningar
  1. 0 4
      .gitignore
  2. 6 0
      README.md
  3. 1 1
      build.sbt
  4. 2 2
      src/main/scala/FMUAnalyzerApp.scala

+ 0 - 4
.gitignore

@@ -2,10 +2,6 @@
 /project/project/target/
 /target/
 .idea
-/release/fmuanalyzer/*.log
-/release/fmuanalyzer/results/
-/release/fmuanalyzer/ClassEAmplifier_.results
-/release/fmuanalyzer/*.jar
 /results/20-sim
 /FMIGraphModel.dot
 /lib/upmodbat.ps1

+ 6 - 0
README.md

@@ -91,6 +91,12 @@ sbt assembly
 4. Now build and run tool within the container. Follow the instructions above.
 5. Optional: remove the image built: `docker image rm fmimobster:1.0`
 
+
+## Release Procedure
+
+- [ ] Update version (search for current version to find all places where it needs to be updated. Usually in the `FMUAnalyzerApp` and `build.sbt`)
+- [ ] Run the [build.py](./build.py) script using python 3.9.
+
 ## Acknowledgements
 
 We are thankful to:

+ 1 - 1
build.sbt

@@ -1,5 +1,5 @@
 name := "FMIMOBSTER"
-version := "0.2"
+version := "0.2.1"
 
 scalaVersion := "2.11.12"
 

+ 2 - 2
src/main/scala/FMUAnalyzerApp.scala

@@ -20,8 +20,8 @@ object FMUAnalyzerApp extends App {
   val parser = {
     import builder._
     OParser.sequence(
-      programName("fmuanalyzer"),
-      head("fmuanalyzer", "0.0.1"),
+      programName("FMIMOBSTER"),
+      head("FMIMOBSTER", "0.2.1"),
       opt[File]('d', "dir")
         .required()
         .valueName("<file>")