Commit 339b5db5 authored by Christian Kniss's avatar Christian Kniss
Browse files

Vorbereitung für Version v3.12.0, Runtimeinfo erstellt

parent 6ea403aa
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -3,6 +3,8 @@ Versionsverlauf

## [Noch nicht veröffentlicht]

## [Version 3.12.0]

### Änderungen

- [Fehler 13](https://gitlab.nerz-ev.de/ERZ/SWE_de.bsvrz.kernsoftware/issues/13), Nerz-FM-225 und Nerz-FM-233: Es wurden folgende Performanceverbesserungen in der Konfiguration implementiert:
@@ -2134,7 +2136,8 @@ Folgende Probleme der Kernsoftware vom 20.03.2006 (Version 2) wurden behoben:
- Debugausgaben insbesondere in der Konfiguration überarbeitet.


[noch nicht veröffentlicht]: https://gitlab.nerz-ev.de/ERZ/SWE_de.bsvrz.kernsoftware/compare/v3.11.0...HEAD
[noch nicht veröffentlicht]: https://gitlab.nerz-ev.de/ERZ/SWE_de.bsvrz.kernsoftware/compare/v3.12.0...HEAD
[version 3.12.0]: https://gitlab.nerz-ev.de/ERZ/SWE_de.bsvrz.kernsoftware/compare/v3.11.0...v3.12.0
[version 3.11.0]: https://gitlab.nerz-ev.de/ERZ/SWE_de.bsvrz.kernsoftware/compare/v3.10.0...v3.11.0
[version 3.10.0]: https://gitlab.nerz-ev.de/ERZ/SWE_de.bsvrz.kernsoftware/compare/v3.9.7...v3.10.0
[version 3.9.7]: https://gitlab.nerz-ev.de/ERZ/SWE_de.bsvrz.kernsoftware/compare/v3.9.6...v3.9.7
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@

// Projektweit gültige Version für alle Subprojekte
allprojects {
  version '3.11.1-SNAPSHOT'
  version '3.12.0'
}

//--------------------------------------------------------------------
+14 −0
Original line number Diff line number Diff line

      package de.bsvrz.dav.daf;
      public class PackageRuntimeInfo {
        public static String getLicence() { return "siehe Datei LICENSE.txt";}
        public static String getRelease() { return "Kernsoftware 3.12.0";}
        public static String getVersion() { return "3.12.0";}
        public static String getRevision() { return "";}
        public static String getCompileTime() { return "20.09.18 16:19:14";}
        public static String getDependsOnCompiled() { return "siehe Datei de.bsvrz.dav.daf-Build-Report.txt";}
        public static String getDependsOnSource() { return "siehe Datei de.bsvrz.dav.daf-Build-Report.txt";}
        public static String getDependsOnLib() { return "siehe Datei de.bsvrz.dav.daf-Build-Report.txt";}
        public static String getJvmVersion() { return "1.8";}
      }
      
 No newline at end of file
+14 −0
Original line number Diff line number Diff line

      package de.bsvrz.dav.dav;
      public class PackageRuntimeInfo {
        public static String getLicence() { return "siehe Datei LICENSE.txt";}
        public static String getRelease() { return "Kernsoftware 3.12.0";}
        public static String getVersion() { return "3.12.0";}
        public static String getRevision() { return "";}
        public static String getCompileTime() { return "20.09.18 16:19:14";}
        public static String getDependsOnCompiled() { return "siehe Datei de.bsvrz.dav.dav-Build-Report.txt";}
        public static String getDependsOnSource() { return "siehe Datei de.bsvrz.dav.dav-Build-Report.txt";}
        public static String getDependsOnLib() { return "siehe Datei de.bsvrz.dav.dav-Build-Report.txt";}
        public static String getJvmVersion() { return "1.8";}
      }
      
 No newline at end of file
+14 −0
Original line number Diff line number Diff line

      package de.bsvrz.pat.datgen;
      public class PackageRuntimeInfo {
        public static String getLicence() { return "siehe Datei LICENSE.txt";}
        public static String getRelease() { return "Kernsoftware 3.12.0";}
        public static String getVersion() { return "3.12.0";}
        public static String getRevision() { return "";}
        public static String getCompileTime() { return "20.09.18 16:19:14";}
        public static String getDependsOnCompiled() { return "siehe Datei de.bsvrz.pat.datgen-Build-Report.txt";}
        public static String getDependsOnSource() { return "siehe Datei de.bsvrz.pat.datgen-Build-Report.txt";}
        public static String getDependsOnLib() { return "siehe Datei de.bsvrz.pat.datgen-Build-Report.txt";}
        public static String getJvmVersion() { return "1.8";}
      }
      
 No newline at end of file
Loading