Skip to content

Commit 4d4209f

Browse files
Merge pull request #33 from diffo-dev/32-add-reuse-compliance
added reuse compliance
2 parents 4d44ec5 + 989d1f1 commit 4d4209f

112 files changed

Lines changed: 486 additions & 341 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.formatter.exs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2025 diffo contributors <https://github.com/diffo-dev/diffo/graphs.contributors>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
# Used by "mix format"
26
locals_without_parens = [
37
id: 1,

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
<!--
2+
SPDX-FileCopyrightText: 2025 diffo contributors <https://github.com/diffo-dev/diffo/graphs.contributors>
3+
4+
SPDX-License-Identifier: MIT
5+
-->
6+
17
---
28
name: Bug report
39
about: Create a report to help us improve

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
<!--
2+
SPDX-FileCopyrightText: 2025 diffo contributors <https://github.com/diffo-dev/diffo/graphs.contributors>
3+
4+
SPDX-License-Identifier: MIT
5+
-->
6+
17
---
28
name: Feature request
39
about: Suggest an idea for this project

.github/workflows/reuse.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# SPDX-FileCopyrightText: 2025 diffo contributors <https://github.com/diffo-dev/diffo/graphs.contributors>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
5+
name: REUSE Compliance Check
6+
7+
on: [push, pull_request]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- name: REUSE Compliance Check
15+
uses: fsfe/reuse-action@v6

.gitignore.license

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
SPDX-FileCopyrightText: 2025 diffo contributors <https://github.com/diffo-dev/diffo/graphs.contributors>
2+
3+
SPDX-License-Identifier: MIT

.iex.exs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2025 diffo contributors <https://github.com/diffo-dev/diffo/graphs.contributors>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
IEx.configure(
26
inspect: [
37
custom_options: [sort_maps: true]

.tool-versions

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
erlang 28.1
2+
elixir 1.18.4-otp-28

.tool-versions.license

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
SPDX-FileCopyrightText: 2025 diffo contributors <https://github.com/diffo-dev/diffo/graphs.contributors>
2+
3+
SPDX-License-Identifier: MIT

.vscode/launch.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// SPDX-FileCopyrightText: 2025 diffo contributors <https://github.com/diffo-dev/diffo/graphs.contributors>
2+
//
3+
// SPDX-License-Identifier: MIT
14
{
25
// Use IntelliSense to learn about possible attributes.
36
// Hover to view descriptions of existing attributes.

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
<!--
2+
SPDX-FileCopyrightText: 2025 diffo contributors <https://github.com/diffo-dev/diffo/graphs.contributors>
3+
4+
SPDX-License-Identifier: MIT
5+
-->
6+
17
# Change Log
28

39
All notable changes to this project will be documented in this file.
@@ -19,4 +25,8 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
1925
* customise instance via specification
2026
* improve relationships to avoid circular loads
2127

28+
## [v0.1.1](https://github.com/diffo-dev/diffo/compare/v0.1.1...v0.1.2) (2025-10-20)
29+
30+
### Features
2231

32+
* REUSE compliant

0 commit comments

Comments
 (0)