Skip to content

Commit d988dd9

Browse files
committed
Changed license from GNU General Public License Version 3 to Apache License Version 2.0.
Removed reference to draft-peabody-dispatch-new-uuid-format-04 in README.md.
2 parents 125cba7 + a7a05a3 commit d988dd9

File tree

12 files changed

+336
-689
lines changed

12 files changed

+336
-689
lines changed

CHANGELOG.md

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

99
## [Unreleased]
1010

11+
## [v2.1.0-alpha] - 2023-06-15
12+
[v2.1.0-alpha](https://github.com/TensionDev/UUIDUtil/releases/tag/v2.1.0-alpha)
13+
14+
### Changed
15+
- Changed license from GNU General Public License Version 3 to Apache License Version 2.0.
16+
17+
18+
## [v2.0.0] - 2023-06-15
19+
[v2.0.0](https://github.com/TensionDev/UUIDUtil/releases/tag/v2.0.0)
20+
21+
### Changed
22+
- Changed license from GNU General Public License Version 3 to Apache License Version 2.0.
23+
24+
1125
## [v1.2.0-alpha] - 2022-12-15
1226
[v1.2.0-alpha](https://github.com/TensionDev/UUIDUtil/releases/tag/v1.2.0-alpha)
1327

LICENSE.md

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

NOTICE.md

Whitespace-only changes.

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,4 @@ This project references the following documents for implementation.
99
- [Universally unique identifier - Wikipedia](https://en.wikipedia.org/wiki/Universally_unique_identifier)
1010
- [MySQL :: MySQL 8.0 Reference Manual :: 12.24 Miscellaneous Functions](https://dev.mysql.com/doc/refman/8.0/en/miscellaneous-functions.html#function_uuid)
1111
- [rfc4122](https://datatracker.ietf.org/doc/html/rfc4122)
12-
- [draft-peabody-dispatch-new-uuid-format-04](https://datatracker.ietf.org/doc/html/draft-peabody-dispatch-new-uuid-format)
13-
- [draft-ietf-uuidrev-rfc4122bis-01](https://datatracker.ietf.org/doc/html/draft-ietf-uuidrev-rfc4122bis)
12+
- [draft-ietf-uuidrev-rfc4122bis-07](https://datatracker.ietf.org/doc/html/draft-ietf-uuidrev-rfc4122bis)

UUIDUtil/UUIDUtil.csproj

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,32 @@
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
99
<PackageId>TensionDev.UUID</PackageId>
10-
<Version>1.2.0-alpha</Version>
10+
<Version>2.1.0-alpha</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, and Draft Versions 6 and 7.</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, and Draft Versions 6 and 7.</PackageReleaseNotes>
2223
<NeutralLanguage>en-SG</NeutralLanguage>
23-
<AssemblyVersion>1.2.0.0</AssemblyVersion>
24-
<FileVersion>1.2.0.0</FileVersion>
24+
<AssemblyVersion>2.1.0.0</AssemblyVersion>
25+
<FileVersion>2.1.0.0</FileVersion>
2526
<IncludeSymbols>true</IncludeSymbols>
2627
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
28+
<PackageReadmeFile>README.md</PackageReadmeFile>
2729
</PropertyGroup>
2830

31+
<ItemGroup>
32+
<None Include="..\README.md">
33+
<Pack>True</Pack>
34+
<PackagePath>\</PackagePath>
35+
</None>
36+
</ItemGroup>
37+
2938
</Project>

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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
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/UUIDv6.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 <[email protected]>
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
{

0 commit comments

Comments
 (0)