Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
joniles committed Nov 25, 2022
1 parent e8eba38 commit 8c6c76d
Show file tree
Hide file tree
Showing 13 changed files with 30 additions and 25 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog

## 10.14.1 (unreleased)
## 10.14.2 (unreleased)

## 10.14.1 (2022-11-25)
* Fix CVE-2022-41954: Temporary File Information Disclosure Vulnerability (Contributed by Jonathan Leitschuh)

## 10.14.0 (2022-11-21)
* Handle missing default calendar when reading a PMXML file.
Expand Down
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<property environment="env"/>

<!-- Build Configuration -->
<property name="current.version" value="10.14.0" />
<property name="current.version" value="10.14.1" />

<!-- Environment Configuration-->
<property name="maven.cmd" value="c:/java/apache-maven-3.8.5/bin/mvn.cmd"/>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<artifactId>mpxj</artifactId>

<!-- Note - this is automatically updated by the ant build ... don't remove the MPXJ comment! -->
<!-- MPXJ --><version>10.14.0</version>
<!-- MPXJ --><version>10.14.1</version>

<name>MPXJ</name>
<url>http://mpxj.org</url>
Expand Down
6 changes: 3 additions & 3 deletions src.net/samples/MpxjConvert/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("10.14.0.0")]
[assembly: AssemblyVersion("10.14.0.0")]
[assembly: AssemblyFileVersion("10.14.0.0")]
// [assembly: AssemblyVersion("10.14.1.0")]
[assembly: AssemblyVersion("10.14.1.0")]
[assembly: AssemblyFileVersion("10.14.1.0")]
6 changes: 3 additions & 3 deletions src.net/samples/MpxjCreate/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("10.14.0.0")]
[assembly: AssemblyVersion("10.14.0.0")]
[assembly: AssemblyFileVersion("10.14.0.0")]
// [assembly: AssemblyVersion("10.14.1.0")]
[assembly: AssemblyVersion("10.14.1.0")]
[assembly: AssemblyFileVersion("10.14.1.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("10.14.0.0")]
[assembly: AssemblyVersion("10.14.0.0")]
[assembly: AssemblyFileVersion("10.14.0.0")]
// [assembly: AssemblyVersion("10.14.1.0")]
[assembly: AssemblyVersion("10.14.1.0")]
[assembly: AssemblyFileVersion("10.14.1.0")]
6 changes: 3 additions & 3 deletions src.net/samples/MpxjQuery/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("10.14.0.0")]
[assembly: AssemblyVersion("10.14.0.0")]
[assembly: AssemblyFileVersion("10.14.0.0")]
// [assembly: AssemblyVersion("10.14.1.0")]
[assembly: AssemblyVersion("10.14.1.0")]
[assembly: AssemblyFileVersion("10.14.1.0")]
6 changes: 3 additions & 3 deletions src.net/samples/MpxjTest/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("10.14.0.0")]
[assembly: AssemblyVersion("10.14.0.0")]
[assembly: AssemblyFileVersion("10.14.0.0")]
// [assembly: AssemblyVersion("10.14.1.0")]
[assembly: AssemblyVersion("10.14.1.0")]
[assembly: AssemblyFileVersion("10.14.1.0")]
6 changes: 3 additions & 3 deletions src.net/utilities/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("10.14.0.0")]
[assembly: AssemblyVersion("10.14.0.0")]
[assembly: AssemblyFileVersion("10.14.0.0")]
// [assembly: AssemblyVersion("10.14.1.0")]
[assembly: AssemblyVersion("10.14.1.0")]
[assembly: AssemblyFileVersion("10.14.1.0")]
2 changes: 1 addition & 1 deletion src.net/utilities/MpxjUtilities.nca31.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<TargetFramework>netcoreapp3.1</TargetFramework>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\mpxj.snk</AssemblyOriginatorKeyFile>
<Version>10.14.0.0</Version>
<Version>10.14.1.0</Version>
<Copyright>Copyright © Packwood Software</Copyright>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src.python/mpxj/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="mpxj",
version="10.14.0",
version="10.14.1",
author="Jon Iles",
author_email="jon.iles@bcs.org.uk",
description="Python wrapper for the MPXJ Java library for manipulating project files",
Expand Down
2 changes: 1 addition & 1 deletion src.ruby/mpxj/lib/mpxj/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# MPXJ gem module
module MPXJ
# MPXJ gem version number
VERSION = "10.14.0"
VERSION = "10.14.1"
end
4 changes: 3 additions & 1 deletion src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
<author email="jon.iles@bcs.org.uk">Jon Iles</author>
</properties>
<body>
<release date="unreleased" version="10.14.1">
<release date="unreleased" version="10.14.2">
</release>
<release date="2022-11-25" version="10.14.1">
<action dev="joniles" type="update">Fix CVE-2022-41954: Temporary File Information Disclosure Vulnerability (Contributed by Jonathan Leitschuh)</action>
</release>
<release date="2022-11-21" version="10.14.0">
Expand Down

0 comments on commit 8c6c76d

Please sign in to comment.