Skip to content

Commit

Permalink
Changed license from GNU General Public License Version 3 to Apache L…
Browse files Browse the repository at this point in the history
…icense Version 2.0.
  • Loading branch information
amsga committed Jun 15, 2023
1 parent 924fbfe commit a8e6c33
Show file tree
Hide file tree
Showing 9 changed files with 290 additions and 685 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v2.0.0] - 2023-06-15
[v2.0.0](https://github.com/TensionDev/UUIDUtil/releases/tag/v2.0.0)

### Changed
- Changed license from GNU General Public License Version 3 to Apache License Version 2.0.


## [v1.1.0] - 2022-05-31
[v1.1.0](https://github.com/TensionDev/UUIDUtil/releases/tag/v1.1.0)

Expand Down
875 changes: 201 additions & 674 deletions LICENSE.md

Large diffs are not rendered by default.

Empty file added NOTICE.md
Empty file.
13 changes: 7 additions & 6 deletions UUIDUtil/UUIDUtil.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,22 @@
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageId>TensionDev.UUID</PackageId>
<Version>1.1.0</Version>
<Version>2.0.0</Version>
<Authors>TensionDev amsga</Authors>
<Company>TensionDev</Company>
<Product>TensionDev.UUID</Product>
<Description>A project to store various UUID functions within a library for future use.</Description>
<Copyright>Copyright (c) TensionDev 2021 - 2022</Copyright>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
<Copyright>Copyright (c) TensionDev 2021 - 2023</Copyright>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/TensionDev/UUIDUtil</PackageProjectUrl>
<RepositoryUrl>https://github.com/TensionDev/UUIDUtil</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>UUID GUID</PackageTags>
<PackageReleaseNotes>Release with UUID / GUID Version 1, Version 3, Version 4 and Version 5.</PackageReleaseNotes>
<PackageReleaseNotes>Change in license to Apache License 2.0.
Release with UUID / GUID Version 1, Version 3, Version 4 and Version 5.</PackageReleaseNotes>
<NeutralLanguage>en-SG</NeutralLanguage>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<FileVersion>1.1.0.0</FileVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<FileVersion>2.0.0.0</FileVersion>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
Expand Down
16 changes: 15 additions & 1 deletion UUIDUtil/UUIDv1.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
using System;
// Copyright 2021 TensionDev <TensionDev@outlook.com>
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

using System;

namespace TensionDev.UUID
{
Expand Down
16 changes: 15 additions & 1 deletion UUIDUtil/UUIDv3.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
using System;
// Copyright 2021 TensionDev <TensionDev@outlook.com>
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

using System;
using System.Security.Cryptography;
using System.Text;

Expand Down
16 changes: 15 additions & 1 deletion UUIDUtil/UUIDv4.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
using System;
// Copyright 2021 TensionDev <TensionDev@outlook.com>
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

using System;

namespace TensionDev.UUID
{
Expand Down
16 changes: 15 additions & 1 deletion UUIDUtil/UUIDv5.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
using System;
// Copyright 2021 TensionDev <TensionDev@outlook.com>
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

using System;
using System.Security.Cryptography;
using System.Text;

Expand Down
16 changes: 15 additions & 1 deletion UUIDUtil/Uuid.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
using System;
// Copyright 2021 TensionDev <TensionDev@outlook.com>
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

using System;
using System.Text;
using System.Text.RegularExpressions;

Expand Down

0 comments on commit a8e6c33

Please sign in to comment.