Skip to content

Commit 57323d6

Browse files
AarononthewebArkatufus
authored andcommitted
added 1.1.0 HOCON release notes (#98)
* added 1.1.0 HOCON release notes * updated release notes to latest
1 parent ab5124b commit 57323d6

File tree

2 files changed

+20
-12
lines changed

2 files changed

+20
-12
lines changed

RELEASE_NOTES.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
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+
112
#### 1.0.0 November 14th 2018 ####
213
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.
314

src/common.props

+9-12
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,15 @@
22
<PropertyGroup>
33
<Copyright>Copyright © 2014-2018 Akka.NET Team</Copyright>
44
<Authors>Akka.NET Team</Authors>
5-
<VersionPrefix>1.0.0</VersionPrefix>
6-
<PackageReleaseNotes>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.
7-
The performance has significantly improved, as have the range of features supported by this library, including:
8-
Built-in enviroment variable substitution;
9-
[Support for better byte and time formats](https://github.com/akkadotnet/akka.net/pull/3600);
10-
[Improved object substitution and merging](https://github.com/akkadotnet/HOCON/pull/55);
11-
and many more features.
12-
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.
13-
HOCON ships as two NuGet packages:
14-
`Hocon` - includes all core parser, substitution, tokenization, and other functionality;
15-
`Hocon.Configuration` - adds `App.config` and `System.Configuration` integration to HOCON.
16-
`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.</PackageReleaseNotes>
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>
1714
<PackageIconUrl>http://getakka.net/images/akkalogo.png</PackageIconUrl>
1815
<PackageProjectUrl>https://github.com/akkadotnet/HOCON</PackageProjectUrl>
1916
<PackageLicenseUrl>https://github.com/akkadotnet/HOCON/blob/master/LICENSE</PackageLicenseUrl>

0 commit comments

Comments
 (0)