Skip to content

Commit 1f88a68

Browse files
added v1.2.0 release notes (#117)
1 parent 115c634 commit 1f88a68

File tree

2 files changed

+4
-40
lines changed

2 files changed

+4
-40
lines changed

RELEASE_NOTES.md

+2-31
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,2 @@
1-
#### 1.1.0 July 29 2019 ####
2-
HOCON 1.1.0 contains a large number of bug fixes and improvements over HOCON 1.0.0, including:
3-
4-
* [Fix: fully qualified type name with assembly cant be used as property name ](https://github.com/akkadotnet/HOCON/issues/79)
5-
* [Fix: unable to use include keyword at root level](https://github.com/akkadotnet/HOCON/pull/69)
6-
* [Fix. Child field path was not concatenated with its parent path](https://github.com/akkadotnet/HOCON/pull/96)
7-
* [Fix: bug when getting a string with a substitution as an array element](https://github.com/akkadotnet/HOCON/pull/88)
8-
* [Fix: Object fields containing objects may not return proper object value in certain circumstances. ](https://github.com/akkadotnet/HOCON/pull/93)
9-
* [Fix: Improper value instantiation and parenting during parsing caused a disconnected tree nodes.](https://github.com/akkadotnet/HOCON/pull/99)
10-
* [Fix: HoconValue.Undefined is inconsistent](https://github.com/akkadotnet/HOCON/pull/101)
11-
12-
#### 1.0.0 November 14th 2018 ####
13-
HOCON 1.0.0 is a complete and total rewrite of the HOCON parsing engine, designed to work with both the .NET Framework (4.5 and later) and .NET Standard 1.3.
14-
15-
The performance has significantly improved, as have the range of features supported by this library, including:
16-
* Built-in enviroment variable substitution;
17-
* [Support for better byte and time formats](https://github.com/akkadotnet/akka.net/pull/3600);
18-
* [Improved object substitution and merging](https://github.com/akkadotnet/HOCON/pull/55);
19-
* and many more features.
20-
21-
This library will be developed and released independently from Akka.NET itself, but beginning with Akka.NET v1.4 it will be taken as a dependency by the core Akka libraries.
22-
23-
HOCON ships as two NuGet packages:
24-
* `Hocon` - includes all core parser, substitution, tokenization, and other functionality;
25-
* `Hocon.Configuration` - adds `App.config` and `System.Configuration` integration to HOCON.
26-
* `Hocon.Extensions.Configuration` - adds HOCON support for the popular `Microsoft.Extensions.Configuration` library used in ASP.NET Core and other parts of the new .NET Core runtime.
27-
28-
#### 0.1.0 November 9th 2017 ####
29-
* .NET Standard 1.2 and .NET 4.5 dual support for core HOCON library.
30-
* Dropped dependency on JSON.NET.
31-
* Separated HOCON from Akka conceptually and in terms of namespaces.
1+
#### 1.2.0 October 05 2019 ####
2+
HOCON 1.2.0 contains an entirely new model for working with HOCON, via the `Hocon.Immutable` NuGet package.

src/common.props

+2-9
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,8 @@
22
<PropertyGroup>
33
<Copyright>Copyright © 2014-2019 Akka.NET Team</Copyright>
44
<Authors>Akka.NET Team</Authors>
5-
<VersionPrefix>1.1.0</VersionPrefix>
6-
<PackageReleaseNotes>HOCON 1.1.0 contains a large number of bug fixes and improvements over HOCON 1.0.0, including:
7-
[Fix: fully qualified type name with assembly cant be used as property name ](https://github.com/akkadotnet/HOCON/issues/79)
8-
[Fix: unable to use include keyword at root level](https://github.com/akkadotnet/HOCON/pull/69)
9-
[Fix. Child field path was not concatenated with its parent path](https://github.com/akkadotnet/HOCON/pull/96)
10-
[Fix: bug when getting a string with a substitution as an array element](https://github.com/akkadotnet/HOCON/pull/88)
11-
[Fix: Object fields containing objects may not return proper object value in certain circumstances. ](https://github.com/akkadotnet/HOCON/pull/93)
12-
[Fix: Improper value instantiation and parenting during parsing caused a disconnected tree nodes.](https://github.com/akkadotnet/HOCON/pull/99)
13-
[Fix: HoconValue.Undefined is inconsistent](https://github.com/akkadotnet/HOCON/pull/101)</PackageReleaseNotes>
5+
<VersionPrefix>1.2.0</VersionPrefix>
6+
<PackageReleaseNotes>HOCON 1.2.0 contains an entirely new model for working with HOCON, via the `Hocon.Immutable` NuGet package.</PackageReleaseNotes>
147
<PackageIconUrl>http://getakka.net/images/akkalogo.png</PackageIconUrl>
158
<PackageProjectUrl>https://github.com/akkadotnet/HOCON</PackageProjectUrl>
169
<PackageLicenseUrl>https://github.com/akkadotnet/HOCON/blob/master/LICENSE</PackageLicenseUrl>

0 commit comments

Comments
 (0)