Skip to content

Commit

Permalink
Merge pull request #16 from pmonks/dev
Browse files Browse the repository at this point in the history
Release 1.0.219
  • Loading branch information
pmonks authored Nov 12, 2024
2 parents 44b117a + c7c27e3 commit 244bbb8
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 39 deletions.
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ To make review of PRs easier, please:
* Keep PRs small and cohesive - if you have multiple independent contributions, please submit them as independent PRs.
* Minimise "spurious" changes (e.g. whitespace shenanigans).
* Ensure all updated files include your copyright information at the top.
* Ensure all new files include a header comment block containing the [Apache 2.0 license header and your copyright information](https://infra.apache.org/apply-license.html).
* Ensure all new files include a header comment block containing the [MPL 2.0 license header and your copyright information](https://www.mozilla.org/en-US/MPL/headers/).


## Commit and PR Messages
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,3 @@ attic
resources/logback-test.xml
.clj-kondo/.cache
.lein-failures
greplace-test-*.txt
16 changes: 4 additions & 12 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,19 +1,11 @@
;
; Copyright © 2021 Peter Monks
;
; 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
; This Source Code Form is subject to the terms of the Mozilla Public
; License, v. 2.0. If a copy of the MPL was not distributed with this
; file, You can obtain one at https://mozilla.org/MPL/2.0/.
;
; 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.
;
; SPDX-License-Identifier: Apache-2.0
; SPDX-License-Identifier: MPL-2.0
;

{:deps
Expand Down
18 changes: 5 additions & 13 deletions pbr.clj
Original file line number Diff line number Diff line change
@@ -1,19 +1,11 @@
;
; Copyright © 2021 Peter Monks
;
; 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
; This Source Code Form is subject to the terms of the Mozilla Public
; License, v. 2.0. If a copy of the MPL was not distributed with this
; file, You can obtain one at https://mozilla.org/MPL/2.0/.
;
; 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.
;
; SPDX-License-Identifier: Apache-2.0
; SPDX-License-Identifier: MPL-2.0
;

#_{:clj-kondo/ignore [:unresolved-namespace]}
Expand All @@ -27,7 +19,7 @@
:validate-pom true
:pom {:description "This library implements \"URL unfurling\" approximately according to how Slack does it."
:url "https://github.com/pmonks/unfurl"
:licenses [:license {:name "Apache-2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"}]
:licenses [:license {:name "MPL-2.0" :url "https://www.mozilla.org/en-US/MPL/2.0/"}]
:developers [:developer {:id "pmonks" :name "Peter Monks" :email "[email protected]"}]
:scm {:url "https://github.com/pmonks/unfurl" :connection "scm:git:git://github.com/pmonks/unfurl.git" :developer-connection "scm:git:ssh://[email protected]/pmonks/unfurl.git"}
:issue-management {:system "github" :url "https://github.com/pmonks/unfurl/issues"}}
Expand Down
16 changes: 4 additions & 12 deletions test/unfurl/api_test.clj
Original file line number Diff line number Diff line change
@@ -1,19 +1,11 @@
;
; Copyright © 2016 Peter Monks
;
; 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
; This Source Code Form is subject to the terms of the Mozilla Public
; License, v. 2.0. If a copy of the MPL was not distributed with this
; file, You can obtain one at https://mozilla.org/MPL/2.0/.
;
; 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.
;
; SPDX-License-Identifier: Apache-2.0
; SPDX-License-Identifier: MPL-2.0
;

(ns unfurl.api-test
Expand Down

0 comments on commit 244bbb8

Please sign in to comment.