From a5e5951bba6b8f3320e1f010d9be802816996ed4 Mon Sep 17 00:00:00 2001 From: Karandeep Singh Date: Tue, 28 Nov 2023 14:20:40 -0500 Subject: [PATCH] Re-export TidierText and TidierVest. Bump version to 1.2.0. --- NEWS.md | 4 ++++ Project.toml | 4 +++- README.md | 10 ++++++++++ docs/src/index.md | 10 ++++++++++ src/Tidier.jl | 2 ++ 5 files changed, 29 insertions(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index 80871af..5104c80 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,9 @@ # Tidier.jl updates +## v1.2.0 - 2023-11-28 +- Add and re-export TidierText.jl +- Bugfix: Re-export TidierVest.jl (forgot to do this in 1.1.0) + ## v1.1.0 - 2023-11-18 - Update versions of base packages - Add TidierVest.jl diff --git a/Project.toml b/Project.toml index 2741438..90dea1d 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "Tidier" uuid = "f0413319-3358-4bb0-8e7c-0c83523a93bd" authors = ["Karandeep Singh"] -version = "1.1.0" +version = "1.2.0" [deps] Reexport = "189a3867-3050-52da-a836-e630ba90ab69" @@ -10,6 +10,7 @@ TidierData = "fe2206b3-d496-4ee9-a338-6a095c4ece80" TidierDates = "20186a3f-b5d3-468e-823e-77aae96fe2d8" TidierPlots = "337ecbd1-5042-4e2a-ae6f-ca776f97570a" TidierStrings = "248e6834-d0f8-40ef-8fbb-8e711d883e9c" +TidierText = "8f0b679f-44a1-4a38-8011-253e3a78fd39" TidierVest = "969b988e-7aed-4820-b60d-bdec252047c4" [compat] @@ -19,6 +20,7 @@ TidierPlots = "0.5, 1" TidierCats = "0.1, 1" TidierDates = "0.2, 1" TidierStrings = "0.2, 1" +TidierText = "0.1, 1" TidierVest = "0.4, 1" julia = "1.6" diff --git a/README.md b/README.md index 0ba7069..175d042 100644 --- a/README.md +++ b/README.md @@ -65,6 +65,16 @@ TidierStrings.jl is a package dedicated to handling strings. It focuses on funct

+ + +## TidierText.jl + +TidierText.jl is a package dedicated to handling and tidying text data. It focuses on functionality within the tidytext R package. + +[[GitHub]](https://github.com/TidierOrg/TidierText.jl) + +

+ ## TidierVest.jl diff --git a/docs/src/index.md b/docs/src/index.md index fce330d..4cc3961 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -58,6 +58,16 @@ TidierStrings.jl is a package dedicated to handling strings. It focuses on funct

+ + +## TidierText.jl + +TidierText.jl is a package dedicated to handling and tidying text data. It focuses on functionality within the tidytext R package. + +[[GitHub]](https://github.com/TidierOrg/TidierText.jl) + +

+ ## TidierVest.jl diff --git a/src/Tidier.jl b/src/Tidier.jl index ef07be9..6c5ffb7 100644 --- a/src/Tidier.jl +++ b/src/Tidier.jl @@ -7,5 +7,7 @@ using Reexport @reexport using TidierCats @reexport using TidierDates @reexport using TidierStrings +@reexport using TidierText +@reexport using TidierVest end \ No newline at end of file