Skip to content

Commit 94ba261

Browse files
committed
bump version to 0.7.1
1 parent b536464 commit 94ba261

6 files changed

Lines changed: 33 additions & 22 deletions

File tree

.pre-commit-hooks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
entry: somesy
55
args: ["sync"]
66
language: python
7-
files: '^somesy\.toml|\.somesy\.toml|pyproject\.toml|package\.json$'
7+
files: '^somesy\.toml|\.somesy\.toml|pyproject\.toml|package\.json|Project\.toml|cargo\.toml|fpm\.toml$'
88
pass_filenames: false

.somesy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "somesy"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
description = "A CLI tool for synchronizing software project metadata."
55
keywords = ["metadata", "FAIR"]
66
license = "MIT"

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ type: software
33
message: If you use this software, please cite it using this metadata.
44

55
title: somesy
6-
version: 0.7.0
6+
version: 0.7.1
77
abstract: A CLI tool for synchronizing software project metadata.
88
url: https://materials-data-science-and-informatics.github.io/somesy
99
repository-code: https://github.com/Materials-Data-Science-and-Informatics/somesy

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -197,22 +197,22 @@ so when using `somesy` with pre-commit, keep in mind that
197197

198198
Here is an overview of all the currently supported files and formats.
199199

200-
| Input Formats | Status | | Target Formats | Status |
201-
| -------------- | ------ | --- | ----------------------------------- | ------ |
202-
| (.)somesy.toml | ✓ | | pyproject.toml _(poetry v1 and v2)_ | ✓ |
203-
| pyproject.toml | ✓ | | pyproject.toml _(setuptools)_ | ✓(1.) |
204-
| package.json | ✓ | | package.json _(JavaScript)_ | ✓(2.) |
205-
| Project.toml | ✓ | | Project.toml _(Julia)_ | ✓ |
206-
| fpm.toml | ✓ | | fpm.toml _(Fortran)_ | ✓(3.) |
207-
| | ✓ | | pom.toml _(Java)_ | ✓(4.) |
208-
| Cargo.toml | ✓ | | Cargo.toml _(Rust)_ | ✓ |
209-
| | | | mkdocs.yml | ✓(5.) |
210-
| | | | CITATION.cff | ✓ |
211-
| | | | codemeta.json | ✓(6.) |
200+
| Input Formats | Status | | Target Formats | Status |
201+
| -------------- | ------ | --- | ---------------------------------------- | ------ |
202+
| (.)somesy.toml | ✓ | | - | ✓ |
203+
| pyproject.toml | ✓ | | pyproject.toml _(setuptools and poetry)_ | ✓(1.) |
204+
| package.json | ✓ | | package.json _(JavaScript)_ | ✓(2.) |
205+
| Project.toml | ✓ | | Project.toml _(Julia)_ | ✓ |
206+
| fpm.toml | ✓ | | fpm.toml _(Fortran)_ | ✓(3.) |
207+
| | ✓ | | pom.toml _(Java)_ | ✓(4.) |
208+
| Cargo.toml | ✓ | | Cargo.toml _(Rust)_ | ✓ |
209+
| | | | mkdocs.yml | ✓(5.) |
210+
| | | | CITATION.cff | ✓ |
211+
| | | | codemeta.json | ✓(6.) |
212212

213213
**Notes:**
214214

215-
1. note that `somesy` does not support setuptools _dynamic fields_
215+
1. note that `somesy` does not support setuptools or poetry _dynamic fields_
216216
2. `package.json` only supports one author, so `somesy` will pick the _first_ listed author
217217
3. `fpm.toml` only supports one author and maintainer, so `somesy` will pick the _first_ listed author and maintainer
218218
4. `pom.xml` has no concept of `maintainers`, but it can have multiple licenses (somesy only supports one main project license)

codemeta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
],
2828
"name": "somesy",
2929
"description": "A CLI tool for synchronizing software project metadata.",
30-
"version": "0.7.0",
30+
"version": "0.7.1",
3131
"keywords": [
3232
"metadata",
3333
"FAIR"

pyproject.toml

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
[project]
22
name = "somesy"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
description = "A CLI tool for synchronizing software project metadata."
5-
license = "MIT"
65
readme = "README.md"
7-
keywords = ["metadata", "FAIR"]
6+
keywords = [
7+
"metadata",
8+
"FAIR",
9+
]
810
classifiers = [
911
"Operating System :: POSIX :: Linux",
1012
"Operating System :: MacOS :: MacOS X",
@@ -29,8 +31,17 @@ dependencies = [
2931
"defusedxml>=0.7.1",
3032
"pyld>=2.0.4"
3133
]
32-
authors = [{name = "Mustafa Soylu", email = "m.soylu@fz-juelich.de"}, {name = "Anton Pirogov", email = "a.pirogov@fz-juelich.de"}]
33-
maintainers = [{name = "Mustafa Soylu", email = "m.soylu@fz-juelich.de"}]
34+
35+
authors = [
36+
{name = "Mustafa Soylu",email = "m.soylu@fz-juelich.de"},
37+
{name = "Anton Pirogov",email = "a.pirogov@fz-juelich.de"},
38+
]
39+
maintainers = [
40+
{name = "Mustafa Soylu",email = "m.soylu@fz-juelich.de"},
41+
]
42+
43+
license = {text = "MIT"}
44+
3445
[project.urls]
3546
homepage = "https://materials-data-science-and-informatics.github.io/somesy"
3647
repository = "https://github.com/Materials-Data-Science-and-Informatics/somesy"

0 commit comments

Comments
 (0)