Skip to content

Commit

Permalink
Setup Repo For Friday Release (#131)
Browse files Browse the repository at this point in the history
* Removed beta tag from version

* Added an extra line to the version history

* Minor documentation fix
  • Loading branch information
jrg94 committed Apr 15, 2023
1 parent 3d62e70 commit d34d744
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions docs/version-history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ as follows:
v2.x
----

* v2.0.0 [:pr:`131`]

* Setup code for 2023-04-14 release
* See beta releases below for the bulk of the changes

* v2.0.0b2 [:pr:`129`, :pr:`130`]

* Converted all code snippets in docs to doctests
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
MAJOR = 2
MINOR = 0
PATCH = 0
PRE = "b2"
PRE = ""

name = "SnakeMD"
version = f"{MAJOR}.{MINOR}"
Expand Down
2 changes: 1 addition & 1 deletion snakemd/elements.py
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,7 @@ def replace(self, target: str, replacement: str, count: int = -1) -> Paragraph:
:param str target:
the target string to replace
:param str replacement:
the Inline object to insert in place of the target
the string to insert in place of the target
:param int count:
the number of targets to replace; defaults to -1 (all)
:return:
Expand Down

0 comments on commit d34d744

Please sign in to comment.