Skip to content

Commit a54d191

Browse files
authored
Merge pull request #554 from hukkin/version-1.0.0
Bump version: 0.7.22 → 1.0.0
2 parents e53fb83 + 82912cd commit a54d191

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
commit = True
33
tag = True
44
tag_name = {new_version}
5-
current_version = 0.7.22
5+
current_version = 1.0.0
66

77
[bumpversion:file:pyproject.toml]
88
search = version = "{current_version}" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
author = 'Taneli Hukkinen'
2424

2525
# The full version, including alpha/beta/rc tags
26-
release = '0.7.22' # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
26+
release = '1.0.0' # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
2727

2828

2929
# -- General configuration ---------------------------------------------------

docs/users/installation_and_usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Add the following to your project's `.pre-commit-config.yaml` to enable this:
6868

6969
```yaml
7070
- repo: https://github.com/hukkin/mdformat
71-
rev: 0.7.22 # Use the ref you want to point at
71+
rev: 1.0.0 # Use the ref you want to point at
7272
hooks:
7373
- id: mdformat
7474
# Optionally add plugins

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55

66
[project]
77
name = "mdformat"
8-
version = "0.7.22" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
8+
version = "1.0.0" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
99
description = "CommonMark compliant Markdown formatter"
1010
authors = [
1111
{ name = "Taneli Hukkinen", email = "[email protected]" },

src/mdformat/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
__all__ = ("file", "text")
2-
__version__ = "0.7.22" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
2+
__version__ = "1.0.0" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
33

44
from mdformat._api import file, text

0 commit comments

Comments
 (0)