Skip to content

Commit a8e6c33

Browse files
committed
Changed license from GNU General Public License Version 3 to Apache License Version 2.0.
1 parent 924fbfe commit a8e6c33

File tree

9 files changed

+290
-685
lines changed

9 files changed

+290
-685
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
## [Unreleased]
1010

11+
## [v2.0.0] - 2023-06-15
12+
[v2.0.0](https://github.com/TensionDev/UUIDUtil/releases/tag/v2.0.0)
13+
14+
### Changed
15+
- Changed license from GNU General Public License Version 3 to Apache License Version 2.0.
16+
17+
1118
## [v1.1.0] - 2022-05-31
1219
[v1.1.0](https://github.com/TensionDev/UUIDUtil/releases/tag/v1.1.0)
1320

LICENSE.md

Lines changed: 201 additions & 674 deletions
Large diffs are not rendered by default.

NOTICE.md

Whitespace-only changes.

UUIDUtil/UUIDUtil.csproj

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,22 @@
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
99
<PackageId>TensionDev.UUID</PackageId>
10-
<Version>1.1.0</Version>
10+
<Version>2.0.0</Version>
1111
<Authors>TensionDev amsga</Authors>
1212
<Company>TensionDev</Company>
1313
<Product>TensionDev.UUID</Product>
1414
<Description>A project to store various UUID functions within a library for future use.</Description>
15-
<Copyright>Copyright (c) TensionDev 2021 - 2022</Copyright>
16-
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
15+
<Copyright>Copyright (c) TensionDev 2021 - 2023</Copyright>
16+
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1717
<PackageProjectUrl>https://github.com/TensionDev/UUIDUtil</PackageProjectUrl>
1818
<RepositoryUrl>https://github.com/TensionDev/UUIDUtil</RepositoryUrl>
1919
<RepositoryType>git</RepositoryType>
2020
<PackageTags>UUID GUID</PackageTags>
21-
<PackageReleaseNotes>Release with UUID / GUID Version 1, Version 3, Version 4 and Version 5.</PackageReleaseNotes>
21+
<PackageReleaseNotes>Change in license to Apache License 2.0.
22+
Release with UUID / GUID Version 1, Version 3, Version 4 and Version 5.</PackageReleaseNotes>
2223
<NeutralLanguage>en-SG</NeutralLanguage>
23-
<AssemblyVersion>1.1.0.0</AssemblyVersion>
24-
<FileVersion>1.1.0.0</FileVersion>
24+
<AssemblyVersion>2.0.0.0</AssemblyVersion>
25+
<FileVersion>2.0.0.0</FileVersion>
2526
<IncludeSymbols>true</IncludeSymbols>
2627
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
2728
</PropertyGroup>

UUIDUtil/UUIDv1.cs

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
1-
using System;
1+
// Copyright 2021 TensionDev <TensionDev@outlook.com>
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
using System;
216

317
namespace TensionDev.UUID
418
{

UUIDUtil/UUIDv3.cs

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
1-
using System;
1+
// Copyright 2021 TensionDev <TensionDev@outlook.com>
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
using System;
216
using System.Security.Cryptography;
317
using System.Text;
418

UUIDUtil/UUIDv4.cs

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
1-
using System;
1+
// Copyright 2021 TensionDev <TensionDev@outlook.com>
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
using System;
216

317
namespace TensionDev.UUID
418
{

UUIDUtil/UUIDv5.cs

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
1-
using System;
1+
// Copyright 2021 TensionDev <TensionDev@outlook.com>
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
using System;
216
using System.Security.Cryptography;
317
using System.Text;
418

UUIDUtil/Uuid.cs

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
1-
using System;
1+
// Copyright 2021 TensionDev <TensionDev@outlook.com>
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
using System;
216
using System.Text;
317
using System.Text.RegularExpressions;
418

0 commit comments

Comments
 (0)