Skip to content

Commit c5c6fb5

Browse files
authored
Merge pull request #12 from ali-tayebi/dev
Drop support for netcoreapp1.1 - Breaking Change
2 parents 617023c + c5ee4a4 commit c5c6fb5

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [Unreleased]
8+
### Added
9+
- Version is updated to `2.0.0`
10+
- `netcoreapp1.1` is dropped from `TargetFrameworks`
11+
- `CHANGLELOG.md` is added

CHANGES.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

destructurama-json-net.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1313
.gitignore = .gitignore
1414
appveyor.yml = appveyor.yml
1515
Build.ps1 = Build.ps1
16-
CHANGES.md = CHANGES.md
16+
CHANGELOG.md = CHANGELOG.md
1717
LICENSE = LICENSE
1818
README.md = README.md
1919
EndProjectSection

src/Destructurama.JsonNet/Destructurama.JsonNet.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net452;netcoreapp1.1;netstandard2.0</TargetFrameworks>
4+
<TargetFrameworks>net452;netstandard2.0</TargetFrameworks>
55
<RootNamespace>Destructurama</RootNamespace>
66
<SignAssembly>True</SignAssembly>
77
<LangVersion>latest</LangVersion>
@@ -16,7 +16,7 @@
1616
<Product />
1717
<Company />
1818
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
19-
<VersionPrefix>1.2.2</VersionPrefix>
19+
<VersionPrefix>2.0.0</VersionPrefix>
2020
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(MSBuildProjectName).xml</DocumentationFile>
2121
</PropertyGroup>
2222

test/Destructurama.JsonNet.Tests/Destructurama.JsonNet.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net452;netcoreapp1.1;netcoreapp2.2;netcoreapp3.0</TargetFrameworks>
4+
<TargetFrameworks>net452;netcoreapp3.1</TargetFrameworks>
55
</PropertyGroup>
66

77
<ItemGroup>

0 commit comments

Comments
 (0)