Skip to content

Commit

Permalink
Bumping version for official release
Browse files Browse the repository at this point in the history
Signed-off-by: Gary O'Neall <[email protected]>
  • Loading branch information
goneall committed Aug 26, 2016
1 parent 13c6eb7 commit 05d9e60
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.spdx</groupId>
<artifactId>spdx-tools</artifactId>
<version>2.1.0-SNAPSHOT</version>
<version>2.1.0</version>
<name>SPDX tools</name>
<description>SPDX tools</description>
<licenses>
Expand Down
4 changes: 2 additions & 2 deletions src/org/spdx/tools/LicenseRDFAGenerator.java
Original file line number Diff line number Diff line change
Expand Up @@ -456,10 +456,10 @@ private static void writeLicenseList(String version, String releaseDate,
licJson.writeToFile(licJsonFileCopy);
tableOfContentsHTML.addDeprecatedLicense(deprecatedLicense, licHTMLReference);
tableOfContentsJSON.addLicense(deprecatedLicense.getLicense(), licHTMLReference, licJSONReference, true);
File textFile = new File(textFolder.getPath() + File.separator + licBaseHtmlFileName + ".txt");
File textFile = new File(textFolder.getPath() + File.separator + "depreciate_" + licBaseHtmlFileName + ".txt");
Files.write(deprecatedLicense.getLicense().getLicenseText(), textFile, utf8);
if (deprecatedLicense.getLicense().getStandardLicenseTemplate() != null && !deprecatedLicense.getLicense().getStandardLicenseTemplate().trim().isEmpty()) {
File templateFile = new File(templateFolder.getPath() + File.separator + licBaseHtmlFileName + ".template.txt");
File templateFile = new File(templateFolder.getPath() + File.separator + "depreciate_" + licBaseHtmlFileName + ".template.txt");
Files.write(deprecatedLicense.getLicense().getStandardLicenseTemplate(), templateFile, utf8);
}
File htmlTextFile = new File(htmlFolder.getPath() + File.separator + licHtmlFileName);
Expand Down

0 comments on commit 05d9e60

Please sign in to comment.