Skip to content

Commit d34d744

Browse files
authored
Setup Repo For Friday Release (#131)
* Removed beta tag from version * Added an extra line to the version history * Minor documentation fix
1 parent 3d62e70 commit d34d744

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

docs/version-history.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ as follows:
1313
v2.x
1414
----
1515

16+
* v2.0.0 [:pr:`131`]
17+
18+
* Setup code for 2023-04-14 release
19+
* See beta releases below for the bulk of the changes
20+
1621
* v2.0.0b2 [:pr:`129`, :pr:`130`]
1722

1823
* Converted all code snippets in docs to doctests

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
MAJOR = 2
1515
MINOR = 0
1616
PATCH = 0
17-
PRE = "b2"
17+
PRE = ""
1818

1919
name = "SnakeMD"
2020
version = f"{MAJOR}.{MINOR}"

snakemd/elements.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -838,7 +838,7 @@ def replace(self, target: str, replacement: str, count: int = -1) -> Paragraph:
838838
:param str target:
839839
the target string to replace
840840
:param str replacement:
841-
the Inline object to insert in place of the target
841+
the string to insert in place of the target
842842
:param int count:
843843
the number of targets to replace; defaults to -1 (all)
844844
:return:

0 commit comments

Comments
 (0)