Compare commits

..

5 Commits

Author SHA1 Message Date
0f44495a30 chore(deps): update dependency mypy to ^0.991
Some checks failed
renovate/artifacts Artifact file update failure
gitea-physics/deepdog/pipeline/pr-master There was a failure building this commit
2024-04-29 01:30:53 +00:00
e5f7085324 chore(release): 0.8.1
All checks were successful
gitea-physics/deepdog/pipeline/head This commit looks good
gitea-physics/deepdog/pipeline/tag This commit looks good
2024-04-28 04:27:47 -05:00
578481324b chore(release): 0.8.1 2024-04-28 04:27:32 -05:00
bf8ac9850d release: fixes standard version updater which didn't allow minor version to be multidigit 2024-04-28 04:27:06 -05:00
ab408b6412 chore(release): 0.8.1 2024-04-28 04:19:08 -05:00
3 changed files with 7 additions and 3 deletions

View File

@@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [0.8.1](https://gitea.deepak.science:2222/physics/deepdog/compare/0.8.0...0.8.1) (2024-04-28)
### [0.8.1](https://gitea.deepak.science:2222/physics/deepdog/compare/0.8.0...0.8.1) (2024-04-28)
## [0.8.0](https://gitea.deepak.science:2222/physics/deepdog/compare/0.7.10...0.8.0) (2024-04-28)

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "deepdog"
version = "0.7.10"
version = "0.8.1"
description = ""
authors = ["Deepak Mallubhotla <dmallubhotla+github@gmail.com>"]
@@ -15,7 +15,7 @@ tqdm = "^4.66.2"
pytest = ">=6"
flake8 = "^4.0.1"
pytest-cov = "^4.1.0"
mypy = "^0.971"
mypy = "^0.991"
python-semantic-release = "^7.24.0"
black = "^22.3.0"
syrupy = "^4.0.8"

View File

@@ -1,4 +1,4 @@
const pattern = /(\[tool\.poetry\]\nname = "deepdog"\nversion = ")(?<vers>\d+\.\d+\.\d)(")/mg;
const pattern = /(\[tool\.poetry\]\nname = "deepdog"\nversion = ")(?<vers>\d+\.\d+\.\d+)(")/mg;
module.exports.readVersion = function (contents) {
const result = pattern.exec(contents);