Skip to content

Commit fb96413

Browse files
committed
Updated version
1 parent a754c9a commit fb96413

File tree

11 files changed

+27
-21
lines changed

11 files changed

+27
-21
lines changed

.github/CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ There are a couple of rules, which are definitely not standard, but highly recom
6464

6565
1. If no issue already exists for the work you'll be doing, create one to document the problem(s) being solved and self-assign.
6666
2. Otherwise please let us know that you are working on the problem. Regular status updates (e.g. "still in progress", "no time anymore", "practically done", "pull request issued") are highly welcome.
67-
3. Create a new branch—please don't work in the `master` branch directly. It is reserved for releases. We recommend naming the branch to match the issue being addressed (`feature/#777` or `issue-777`).
67+
3. Create a new branch—please don't work in the `main` branch directly. It is reserved for releases. We recommend naming the branch to match the issue being addressed (`feature/#777` or `issue-777`).
6868
4. Add failing tests for the change you want to make. Tests are crucial and should be taken from W3C (or other specification).
6969
5. Fix stuff. Always go from edge case to edge case.
7070
6. All tests should pass now. Also your new implementation should not break existing tests.
@@ -73,7 +73,7 @@ There are a couple of rules, which are definitely not standard, but highly recom
7373

7474
Just to illustrate the git workflow for AngleSharp a little bit more we've added the following graphs.
7575

76-
Initially, AngleSharp starts at the `master` branch. This branch should contain the latest stable (or released) version.
76+
Initially, AngleSharp starts at the `main` branch. This branch should contain the latest stable (or released) version.
7777

7878
Here we now created a new branch called `devel`. This is the development branch.
7979

@@ -101,7 +101,7 @@ git push
101101
Finally, we may have all the features that are needed to release a new version of AngleSharp. Here we tag the release. For instance for the 1.0 release we use `v1.0`.
102102

103103
```sh
104-
git checkout master
104+
git checkout main
105105
git merge devel
106106
git tag v1.0
107107
```
@@ -128,7 +128,7 @@ To sync manually:
128128

129129
```sh
130130
git remote add gitbase [email protected]:AngleSharp/AngleSharp.GitBase.git
131-
git pull gitbase master
131+
git pull gitbase main
132132
```
133133

134134
### Versioning

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
1+
# 0.17.0
2+
3+
Released on Tuesday, May 31 2022.
4+
5+
- Dropped .NET Framework 4.6
6+
- Updated to use AngleSharp 0.17
7+
18
# 0.16.4
2-
Released on ?, February ? 2022.
9+
10+
Released on Tuesday, February 15 2022.
311

412
- Fixed issue with wrong AngleSharp version used for build (#103)
513

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![logo](https://raw.githubusercontent.com/AngleSharp/AngleSharp.Css/master/header.png)
1+
![logo](https://raw.githubusercontent.com/AngleSharp/AngleSharp.Css/main/header.png)
22

33
# AngleSharp.Css
44

build.cake

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ var projectName = "AngleSharp.Css";
33
var solutionName = "AngleSharp.Css";
44
var frameworks = new Dictionary<String, String>
55
{
6-
{ "net46", "net46" },
76
{ "net461", "net461" },
87
{ "net472", "net472" },
98
{ "netstandard2.0", "netstandard2.0" },

src/AngleSharp.Css.Docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@anglesharp/css",
3-
"version": "0.16.0",
3+
"version": "0.17.0",
44
"preview": true,
55
"description": "The doclet for the AngleSharp.Css documentation.",
66
"keywords": [

src/AngleSharp.Css.Tests/AngleSharp.Css.Tests.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net5.0</TargetFrameworks>
3+
<TargetFrameworks>net6.0</TargetFrameworks>
44
<SignAssembly>true</SignAssembly>
55
<AssemblyOriginatorKeyFile>Key.snk</AssemblyOriginatorKeyFile>
66
<IsPackable>false</IsPackable>
@@ -16,11 +16,11 @@
1616
</ItemGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="AngleSharp.Xml" Version="0.16.0" />
19+
<PackageReference Include="AngleSharp.Xml" Version="0.17.0" />
2020
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
21-
<PackageReference Include="NUnit" Version="3.13.1" />
22-
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
23-
<PackageReference Include="GitHubActionsTestLogger" Version="1.2.0" />
24-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
21+
<PackageReference Include="NUnit" Version="3.13.2" />
22+
<PackageReference Include="NUnit3TestAdapter" Version="4.2.0" />
23+
<PackageReference Include="GitHubActionsTestLogger" Version="2.0.0" PrivateAssets="all" />
24+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
2525
</ItemGroup>
2626
</Project>

src/AngleSharp.Css.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
<icon>logo.png</icon>
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>Extends the CSSOM from the core AngleSharp library.</description>
13-
<releaseNotes>https://github.com/AngleSharp/AngleSharp.Css/blob/master/CHANGELOG.md</releaseNotes>
13+
<releaseNotes>https://github.com/AngleSharp/AngleSharp.Css/blob/main/CHANGELOG.md</releaseNotes>
1414
<copyright>Copyright 2016-2022, AngleSharp</copyright>
1515
<tags>html html5 css css3 dom styling library anglesharp angle</tags>
1616
<dependencies>
17-
<dependency id="AngleSharp" version="0.16.1" />
17+
<dependency id="AngleSharp" version="0.17.0" />
1818
</dependencies>
1919
</metadata>
2020
</package>

src/AngleSharp.Css/AngleSharp.Css.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<AssemblyName>AngleSharp.Css</AssemblyName>
44
<RootNamespace>AngleSharp.Css</RootNamespace>
55
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netstandard2.0</TargetFrameworks>
6-
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">netstandard2.0;net46;net461;net472</TargetFrameworks>
6+
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">netstandard2.0;net461;net472</TargetFrameworks>
77
<SignAssembly>true</SignAssembly>
88
<AssemblyOriginatorKeyFile>Key.snk</AssemblyOriginatorKeyFile>
99
<GenerateDocumentationFile>true</GenerateDocumentationFile>
@@ -21,7 +21,7 @@
2121
</ItemGroup>
2222

2323
<ItemGroup>
24-
<PackageReference Include="AngleSharp" Version="0.16.1" />
24+
<PackageReference Include="AngleSharp" Version="0.17.0" />
2525
</ItemGroup>
2626

2727
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">

src/AngleSharp.Performance.Css/AngleSharp.Performance.Css.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
<ItemGroup>
2323
<PackageReference Include="Alba.CsCss" version="1.0.1.0" />
24-
<PackageReference Include="AngleSharp" Version="0.16.1" />
24+
<PackageReference Include="AngleSharp" Version="0.17.0" />
2525
<PackageReference Include="ExCSS" version="2.0.6" />
2626
</ItemGroup>
2727
</Project>

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<PropertyGroup>
33
<Description>Extends the CSSOM from the core AngleSharp library.</Description>
44
<Product>AngleSharp.Css</Product>
5-
<Version>0.16.4</Version>
5+
<Version>0.17.0</Version>
66
</PropertyGroup>
77
</Project>

0 commit comments

Comments
 (0)