Skip to content

Commit ef81695

Browse files
Re-licensed to MIT (#687)
* Re-licensed to MIT * Fix syntax * Remove GPL header * Add re-license note * Update CHANGELOG.md
1 parent 73abe22 commit ef81695

30 files changed

+161
-690
lines changed

.editorconfig

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright 2023 Wayback Archiver. All rights reserved.
2+
# Use of this source code is governed by the MIT
3+
# license that can be found in the LICENSE file.
4+
15
# This file is for unifying the coding style for different editors and IDEs.
26
# More information at http://editorconfig.org
37

.github/dependabot.yml

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright 2023 Wayback Archiver. All rights reserved.
2+
# Use of this source code is governed by the MIT
3+
# license that can be found in the LICENSE file.
4+
15
# To get started with Dependabot version updates, you'll need to specify which
26
# package ecosystems to update and where the package manifests are located.
37
# Please see the documentation for all configuration options:

.github/linters/.markdown-lint.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Copyright 2020 Wayback Archiver. All rights reserved.
2-
# Use of this source code is governed by the GNU GPL v3
1+
# Copyright 2023 Wayback Archiver. All rights reserved.
2+
# Use of this source code is governed by the MIT
33
# license that can be found in the LICENSE file.
4-
#
4+
55
---
66
###########################
77
###########################

.github/workflows/analysis.yml

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright 2023 Wayback Archiver. All rights reserved.
2+
# Use of this source code is governed by the MIT
3+
# license that can be found in the LICENSE file.
4+
15
# For most projects, this workflow file will not need changing; you simply need
26
# to commit it to your repository.
37
#

.github/workflows/docker.yml

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright 2023 Wayback Archiver. All rights reserved.
2+
# Use of this source code is governed by the MIT
3+
# license that can be found in the LICENSE file.
4+
15
name: Docker
26

37
on:

.github/workflows/license.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Copyright 2020 Wayback Archiver. All rights reserved.
2-
# Use of this source code is governed by the GNU GPL v3
1+
# Copyright 2023 Wayback Archiver. All rights reserved.
2+
# Use of this source code is governed by the MIT
33
# license that can be found in the LICENSE file.
4-
#
4+
55
name: License
66

77
on:

.github/workflows/linter.yml

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright 2023 Wayback Archiver. All rights reserved.
2+
# Use of this source code is governed by the MIT
3+
# license that can be found in the LICENSE file.
4+
15
name: Linter
26

37
on:

.github/workflows/publish.yml

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright 2023 Wayback Archiver. All rights reserved.
2+
# Use of this source code is governed by the MIT
3+
# license that can be found in the LICENSE file.
4+
15
name: Publish
26

37
on:

.github/workflows/release.yml

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright 2023 Wayback Archiver. All rights reserved.
2+
# Use of this source code is governed by the MIT
3+
# license that can be found in the LICENSE file.
4+
15
name: Release
26

37
on:

.github/workflows/stale.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Copyright 2020 Wayback Archiver. All rights reserved.
2-
# Use of this source code is governed by the GNU GPL v3
1+
# Copyright 2023 Wayback Archiver. All rights reserved.
2+
# Use of this source code is governed by the MIT
33
# license that can be found in the LICENSE file.
4-
#
4+
55
name: Stale
66

77
on:

.github/workflows/testing.yml

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright 2023 Wayback Archiver. All rights reserved.
2+
# Use of this source code is governed by the MIT
3+
# license that can be found in the LICENSE file.
4+
15
name: Testing
26

37
on:

.licenserc.yaml

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
# Copyright 2020 Wayback Archiver. All rights reserved.
2-
# Use of this source code is governed by the GNU GPL v3
1+
# Copyright 2023 Wayback Archiver. All rights reserved.
2+
# Use of this source code is governed by the MIT
33
# license that can be found in the LICENSE file.
4-
#
4+
55
header:
66
license:
7-
spdx-id: GPL-3.0-or-later
7+
spdx-id: MIT
88
copyright-owner: Wayback Archiver
99
software-name: cairn
1010
content: |
1111
Copyright 2023 Wayback Archiver. All rights reserved.
12-
Use of this source code is governed by the GNU GPL v3
12+
Use of this source code is governed by the MIT
1313
license that can be found in the LICENSE file.
1414
1515
paths-ignore:
@@ -30,6 +30,7 @@ header:
3030
- 'dist'
3131
- 'test'
3232
- '**/*.lock'
33+
- 'src/cli.ts'
3334
- 'LICENSE'
3435
- 'Makefile'
3536
- 'Procfile'

CHANGELOG.md

+7
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+
## [3.0.0] - 2023-05-24
12+
13+
### Changed
14+
- Re-licensed to MIT ([#687](https://github.com/wabarc/cairn/pull/687))
15+
16+
## [2.3.0] - 2023-05-23
17+
1118
### Added
1219
- Add proxy support
1320

Dockerfile

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright 2023 Wayback Archiver. All rights reserved.
2+
# Use of this source code is governed by the MIT
3+
# license that can be found in the LICENSE file.
4+
15
FROM node:18-alpine as builder
26

37
#RUN wget -O- https://gobinaries.com/tj/node-prune | sh

0 commit comments

Comments
 (0)