Skip to content

Commit e213c96

Browse files
added v1.3.0 release notes (#169)
1 parent d979e67 commit e213c96

File tree

2 files changed

+14
-19
lines changed

2 files changed

+14
-19
lines changed

RELEASE_NOTES.md

+7-10
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1-
#### 1.2.2 December 27 2019 ####
2-
HOCON 1.2.1 contains many minor bug fixes and behavioral changes.
1+
#### 1.3.0 January 14 2020 ####
2+
HOCON 1.3.0 contains some significant API changes:
33

4-
**Default HOCON loading order**
5-
Per [issue 151](https://github.com/akkadotnet/HOCON/issues/151), `HOCON.Configuration` now looks for default HOCON content in the following places in the following order:
4+
* [API parity with pre-existing Akka.NET HOCON implementation](https://github.com/akkadotnet/HOCON/issues/157)
5+
* Added `HoconType.String`, `HoconType.Number`, `HoconType.Bool`, and removed `HoconType.Literal` - now it's possible to discover data types more easily while inspecting individual HOCON objects.
6+
* [Fixed: Need to be able to include Config fallback values to string representation](https://github.com/akkadotnet/HOCON/issues/161)
7+
* [Added SourceLink.Github support](https://github.com/akkadotnet/HOCON/pull/166)
68

7-
1. [.NET Core / .NET Framework] An "app.conf" or an "app.hocon" file in the current working directory of the executable when it loads;
8-
2. [.NET Framework] - the `<hocon>` `ConfigurationSection` inside `App.config` or `Web.config`; or
9-
3. [.NET Framework] - and a legacy option, to load the old `<akka>` HOCON section for backwards compatibility purposes with all users who have been using HOCON with Akka.NET.
10-
11-
**Bug fixes**:
12-
For a set of complete bug fixes and changes, please see [the HOCON v1.2.1 milestone on Github](https://github.com/akkadotnet/HOCON/milestone/2).
9+
For a set of complete bug fixes and changes, please see [the HOCON v1.3.0 milestone on Github](https://github.com/akkadotnet/HOCON/milestone/3).

src/common.props

+7-9
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,13 @@
22
<PropertyGroup>
33
<Copyright>Copyright © 2014-2019 Akka.NET Team</Copyright>
44
<Authors>Akka.NET Team</Authors>
5-
<VersionPrefix>1.2.2</VersionPrefix>
6-
<PackageReleaseNotes>HOCON 1.2.1 contains many minor bug fixes and behavioral changes.
7-
Default HOCON loading order**
8-
Per [issue 151](https://github.com/akkadotnet/HOCON/issues/151), `HOCON.Configuration` now looks for default HOCON content in the following places in the following order:
9-
1. [.NET Core / .NET Framework] An "app.conf" or an "app.hocon" file in the current working directory of the executable when it loads;
10-
2. [.NET Framework] - the `&lt;hocon&gt;` `ConfigurationSection` inside `App.config` or `Web.config`; or
11-
3. [.NET Framework] - and a legacy option, to load the old `&lt;akka&gt;` HOCON section for backwards compatibility purposes with all users who have been using HOCON with Akka.NET.
12-
Bug fixes**:
13-
For a set of complete bug fixes and changes, please see [the HOCON v1.2.1 milestone on Github](https://github.com/akkadotnet/HOCON/milestone/2).</PackageReleaseNotes>
5+
<VersionPrefix>1.3.0</VersionPrefix>
6+
<PackageReleaseNotes>HOCON 1.3.0 contains some significant API changes:
7+
[API parity with pre-existing Akka.NET HOCON implementation](https://github.com/akkadotnet/HOCON/issues/157)
8+
Added `HoconType.String`, `HoconType.Number`, `HoconType.Bool`, and removed `HoconType.Literal` - now it's possible to discover data types more easily while inspecting individual HOCON objects.
9+
[Fixed: Need to be able to include Config fallback values to string representation](https://github.com/akkadotnet/HOCON/issues/161)
10+
[Added SourceLink.Github support](https://github.com/akkadotnet/HOCON/pull/166)
11+
For a set of complete bug fixes and changes, please see [the HOCON v1.3.0 milestone on Github](https://github.com/akkadotnet/HOCON/milestone/3).</PackageReleaseNotes>
1412
<PackageIconUrl>http://getakka.net/images/akkalogo.png</PackageIconUrl>
1513
<PackageProjectUrl>https://github.com/akkadotnet/HOCON</PackageProjectUrl>
1614
<PackageLicenseUrl>https://github.com/akkadotnet/HOCON/blob/master/LICENSE</PackageLicenseUrl>

0 commit comments

Comments
 (0)