Skip to content

Commit

Permalink
Merge pull request #13 from mite-standard/1.5.1
Browse files Browse the repository at this point in the history
1.5.1
  • Loading branch information
mmzdouc authored Nov 9, 2024
2 parents 5fe6884 + ca20859 commit f56cdc4
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.5.1] 09-11-2024

### Changed

- Reaction: made "description" of reaction examples optional for backward compatibility
- Made DOI pattern matching less stringent

## [1.5.0] 08-11-2024

### Changed
Expand Down Expand Up @@ -61,4 +68,4 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

### Changed

- All schema elements are now served locally (before: 'changelog.json' and 'citation.json' were taken from MIBiG repository)
- All schema elements are now served locally (before: 'changelog.json' and 'citation.json' were taken from MIBiG repository)
2 changes: 1 addition & 1 deletion mite_schema/schema/definitions/citation.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"type": "string",
"oneOf": [
{
"pattern": "^doi:10\\.\\d{4,9}/[-\\._;()/:a-zA-Z0-9]+$"
"pattern": "^doi:10\\."
}
]
}
3 changes: 1 addition & 2 deletions mite_schema/schema/definitions/reactions.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,7 @@
"required": [
"substrate",
"products",
"isIntermediate",
"description"
"isIntermediate"
],
"properties": {
"substrate": {
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "mite_schema"
version = "1.5.0"
version = "1.5.1"
description = "Containing the Minimum Information about a Tailoring Enzymes schema and auxiliary methods"
readme = "README.md"
requires-python = ">=3.11"
Expand Down Expand Up @@ -114,4 +114,4 @@ ignore = [
"E501",
# mixed-case-variable-in-class-scope
"N815"
]
]

0 comments on commit f56cdc4

Please sign in to comment.