Skip to content

Commit

Permalink
Re-export TidierText and TidierVest. Bump version to 1.2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Karandeep Singh committed Nov 28, 2023
1 parent 8316e8f commit a5e5951
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 1 deletion.
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 3 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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]
Expand All @@ -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"
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,16 @@ TidierStrings.jl is a package dedicated to handling strings. It focuses on funct

<br><br>

<a href="https://github.com/TidierOrg/TidierText.jl"><img src="https://raw.githubusercontent.com/TidierOrg/TidierText.jl/main/docs/src/assets/TidierText_logo.png" align="left" style="padding-right:10px;" width="150"></img></a>

## <a href="https://github.com/TidierOrg/TidierText.jl">TidierText.jl</a>

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)

<br><br>

<a href="https://github.com/TidierOrg/TidierVest.jl"><img src="https://raw.githubusercontent.com/TidierOrg/TidierVest.jl/main/docs/src/assets/TidierVest_logo.png" align="left" style="padding-right:10px;" width="150"></img></a>

## <a href="https://github.com/TidierOrg/TidierVest.jl">TidierVest.jl</a>
Expand Down
10 changes: 10 additions & 0 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,16 @@ TidierStrings.jl is a package dedicated to handling strings. It focuses on funct

<br><br>

<a href="https://github.com/TidierOrg/TidierText.jl"><img src="https://raw.githubusercontent.com/TidierOrg/TidierText.jl/main/docs/src/assets/TidierText\_logo.png" align="left" style="padding-right:10px;" width="150"></img></a>

## <a href="https://github.com/TidierOrg/TidierText.jl">TidierText.jl</a>

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)

<br><br>

<a href="https://github.com/TidierOrg/TidierVest.jl"><img src="https://raw.githubusercontent.com/TidierOrg/TidierVest.jl/main/docs/src/assets/TidierVest\_logo.png" align="left" style="padding-right:10px;" width="150"></img></a>

## <a href="https://github.com/TidierOrg/TidierVest.jl">TidierVest.jl</a>
Expand Down
2 changes: 2 additions & 0 deletions src/Tidier.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,7 @@ using Reexport
@reexport using TidierCats
@reexport using TidierDates
@reexport using TidierStrings
@reexport using TidierText
@reexport using TidierVest

end

2 comments on commit a5e5951

@kdpsingh
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/96091

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.2.0 -m "<description of version>" a5e5951bba6b8f3320e1f010d9be802816996ed4
git push origin v1.2.0

Please sign in to comment.