diff --git a/NEWS.md b/NEWS.md index ffe6a84..a3f2165 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,8 @@ # Tidier.jl updates +## v0.7.4 - 2023-04-11 +- Added `as_float()`, `as_integer()`, and `as_string()` + ## v0.7.3 - 2023-04-10 - Added `@glimpse()` diff --git a/Project.toml b/Project.toml index 937a8d5..697ef26 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "Tidier" uuid = "f0413319-3358-4bb0-8e7c-0c83523a93bd" authors = ["Karandeep Singh"] -version = "0.7.3" +version = "0.7.4" [deps] Chain = "8be319e6-bccf-4806-a6f7-6fae938471bc" diff --git a/README.md b/README.md index cfc5842..47cb405 100644 --- a/README.md +++ b/README.md @@ -103,6 +103,7 @@ Tidier.jl also supports the following helper functions: - `ntile()` - `lag()` and `lead()` - `starts_with()`, `ends_with()`, `matches()`, and `contains()` +- `as_float()`, `as_integer()`, and `as_string()` See the documentation [Home](https://tidierorg.github.io/Tidier.jl/dev/) page for a guide on how to get started, or the [Reference](https://tidierorg.github.io/Tidier.jl/dev/reference/) page for a detailed guide to each of the macros and functions. diff --git a/docs/src/index.md b/docs/src/index.md index 5469e7d..fbcd68c 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -115,6 +115,7 @@ Tidier.jl also supports the following helper functions: - `ntile()` - `lag()` and `lead()` - `starts_with()`, `ends_with()`, `matches()`, and `contains()` + - `as_float()`, `as_integer()`, and `as_string()` ``` See the [Reference](https://tidierorg.github.io/Tidier.jl/dev/reference/) page for a detailed guide to each of the macros and functions.