From ed8b85481710edf6f2028fdbe4f53b96021e8e58 Mon Sep 17 00:00:00 2001 From: Bruno Arine Date: Thu, 29 Jun 2023 09:48:00 -0300 Subject: [PATCH 1/3] docs: update instructions with release tags --- README.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.org b/README.org index 24a1c87..0ce519c 100644 --- a/README.org +++ b/README.org @@ -32,7 +32,7 @@ That's why I've written =org-similarity=. As an avid =org-roam= user with more t ** Installation -You can install =org-similarity= using =straing.el=, its Doom Emacs wrapper, or manually cloning the repository. In either case, you can choose to use the =main= branch for a stable version of the repository, or =develop= for a version with the latest additions. Just replace the branch name with *main* or *develop* wherever it appears in the snippets below. +You can install =org-similarity= using =straing.el=, its Doom Emacs wrapper, or manually cloning the repository. In either case, you can choose to use the =main= branch for a stable version of the repository, =develop= for the latest additions, or ={RELEASE_VERSION} for a specific release version (e.g. =v1.0.0=). Just replace the =branch= property accordingly in the instructions below. *Using straight.el* From a0f8f3832bbc894bf81b16810892f7a8648f53f4 Mon Sep 17 00:00:00 2001 From: Bruno Arine Date: Thu, 29 Jun 2023 09:49:33 -0300 Subject: [PATCH 2/3] fix: upgrade to v1.0.0 in setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7708105..ca883aa 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name="org-similarity", - version="0.3", + version="1.0.0", author="Bruno Arine", author_email="bruno.arine@runbox.com", packages=["orgsimilarity"], From c0ef1fb98b9953490e57cc90ec5bb0102d0f748d Mon Sep 17 00:00:00 2001 From: Bruno Arine Date: Thu, 29 Jun 2023 09:51:39 -0300 Subject: [PATCH 3/3] docs: fix typo --- README.org | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.org b/README.org index 0ce519c..fba7513 100644 --- a/README.org +++ b/README.org @@ -32,7 +32,7 @@ That's why I've written =org-similarity=. As an avid =org-roam= user with more t ** Installation -You can install =org-similarity= using =straing.el=, its Doom Emacs wrapper, or manually cloning the repository. In either case, you can choose to use the =main= branch for a stable version of the repository, =develop= for the latest additions, or ={RELEASE_VERSION} for a specific release version (e.g. =v1.0.0=). Just replace the =branch= property accordingly in the instructions below. +You can install =org-similarity= using =straing.el=, its Doom Emacs wrapper, or manually cloning the repository. In either case, you can choose to use the =main= branch for a stable version of the repository, =develop= for the latest additions, or ={RELEASE_VERSION}= for a specific release version (e.g. =v1.0.0=). Just replace the =branch= property accordingly in the instructions below. *Using straight.el* @@ -175,12 +175,12 @@ make eval - Added heading and prefix options. - Formatted the score as a floating point number with two decimal places. - Implemented a filter for minimum words. -- Added the `org-similarity-remove-first` option. +- Added the =org-similarity-remove-first= option. - Changed the default directory to ~/org. - Decoupled the interpreter and dependency checks from the main function. - Renamed predicate functions for clarity. - Refactored command, executable, and dependency checks. -- Removed null entries from `junkchars` and `stopwords`. +- Removed null entries from =junkchars= and =stopwords=. - Implemented a benchmarking routine. - Several bug fixes.