diff --git a/ReleaseNotes.md b/ReleaseNotes.md index 6ec79fd..768926e 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,3 +1,13 @@ +### New in 0.8.0 (Released 2017/12/06) + +Bug fixes + + - Remove discontinued field from `ResourceMetadata` that was causing serialization issues [#69](https://github.com/CityofSantaMonica/SODA.NET/issues/69) + +New features + + - `EwsClient` can be instantiated directly, add new implementation `Office365EwsClient` for connecting to Office 365 based accounts [#71](https://github.com/CityofSantaMonica/SODA.NET/pull/71) + ### New in 0.7.0 (Released 2017/01/12) *It is highly recommended to update to this version, as it features improved security following Socrata's deprecation of TLS 1.0* diff --git a/SolutionInfo.cs b/SolutionInfo.cs index 1c20eb6..52f673b 100644 --- a/SolutionInfo.cs +++ b/SolutionInfo.cs @@ -4,7 +4,7 @@ [assembly: AssemblyCompany("City of Santa Monica, CA")] [assembly: AssemblyProduct("SODA")] [assembly: AssemblyCopyright("Copyright © 2017 City of Santa Monica, CA")] -[assembly: AssemblyVersion("0.7.0")] -[assembly: AssemblyFileVersion("0.7.0")] -[assembly: AssemblyInformationalVersion("0.7.0")] +[assembly: AssemblyVersion("0.8.0")] +[assembly: AssemblyFileVersion("0.8.0")] +[assembly: AssemblyInformationalVersion("0.8.0")] [assembly: ComVisible(false)] \ No newline at end of file diff --git a/appveyor.yml b/appveyor.yml index 217dfa6..44d56de 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 0.7.{build} +version: 0.8.{build} pull_requests: do_not_increment_build_number: true skip_tags: true