From 300d131b6e15856a760595110e1a52fd6483e170 Mon Sep 17 00:00:00 2001 From: Karandeep Singh Date: Tue, 11 Apr 2023 23:38:13 -0400 Subject: [PATCH] Updated README.md, index.md, NEWS.md, bumped version to 0.7.4. --- NEWS.md | 3 +++ Project.toml | 2 +- README.md | 1 + docs/src/index.md | 1 + 4 files changed, 6 insertions(+), 1 deletion(-) 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.