From f0953e8cace1282f38b6266a4b56f6dfd638fc2e Mon Sep 17 00:00:00 2001
From: Peter Deffebach
Date: Mon, 26 Feb 2024 11:49:50 -0500
Subject: [PATCH 1/3] add news entry
---
NEWS.md | 5 +++++
Project.toml | 2 +-
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/NEWS.md b/NEWS.md
index b41627f1..27f8dcce 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,3 +1,8 @@
+# DataFramesMeta v0.15.0 Release notes
+
+* Added support for `Not`, `All`, and `Cols` in `@select`, making it easier to keep or drop many columns at once. ([#372](https://github.com/JuliaData/DataFramesMeta.jl/pull/372))
+* Added the `@groupby` macro, which provides an easier syntax for grouping data frames ([#373](https://github.com/JuliaData/DataFramesMeta.jl/pull/373))
+
# DataFramesMeta v0.14.1 Release notes
* Fixed a bug where `ByRow` was not properly identified if DataFramesMeta.jl was `import`ed ([#366](https://github.com/JuliaData/DataFramesMeta.jl/pull/366))
diff --git a/Project.toml b/Project.toml
index ebba5ce3..ad039ff8 100644
--- a/Project.toml
+++ b/Project.toml
@@ -1,6 +1,6 @@
name = "DataFramesMeta"
uuid = "1313f7d8-7da2-5740-9ea0-a2ca25f37964"
-version = "0.14.1"
+version = "0.15.0"
[deps]
Chain = "8be319e6-bccf-4806-a6f7-6fae938471bc"
From 35821bd35085a0b38d26864e8b3a651badb14a79 Mon Sep 17 00:00:00 2001
From: Peter Deffebach
Date: Fri, 1 Mar 2024 08:45:04 -0500
Subject: [PATCH 2/3] add news for metadata
---
NEWS.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/NEWS.md b/NEWS.md
index 27f8dcce..91622dc2 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,5 +1,6 @@
# DataFramesMeta v0.15.0 Release notes
+* Added `@note!` and `@label!`, along with `printlabels` and `printnotes` to make working with metadata easier. ([#377](https://github.com/JuliaData/DataFramesMeta.jl/pull/377))
* Added support for `Not`, `All`, and `Cols` in `@select`, making it easier to keep or drop many columns at once. ([#372](https://github.com/JuliaData/DataFramesMeta.jl/pull/372))
* Added the `@groupby` macro, which provides an easier syntax for grouping data frames ([#373](https://github.com/JuliaData/DataFramesMeta.jl/pull/373))
From a40b42a49229550bf2a3b46cc5b5894b32134b72 Mon Sep 17 00:00:00 2001
From: Peter Deffebach
Date: Fri, 1 Mar 2024 10:40:51 -0500
Subject: [PATCH 3/3] update news
---
NEWS.md | 2 ++
1 file changed, 2 insertions(+)
diff --git a/NEWS.md b/NEWS.md
index 91622dc2..2affa2ed 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,5 +1,7 @@
# DataFramesMeta v0.15.0 Release notes
+* Fixed macro hygiene issues ([#384](https://github.com/JuliaData/DataFramesMeta.jl/pull/384))
+* Fixed a bug with broadcasting in `@astable` ([#382](https://github.com/JuliaData/DataFramesMeta.jl/pull/382))
* Added `@note!` and `@label!`, along with `printlabels` and `printnotes` to make working with metadata easier. ([#377](https://github.com/JuliaData/DataFramesMeta.jl/pull/377))
* Added support for `Not`, `All`, and `Cols` in `@select`, making it easier to keep or drop many columns at once. ([#372](https://github.com/JuliaData/DataFramesMeta.jl/pull/372))
* Added the `@groupby` macro, which provides an easier syntax for grouping data frames ([#373](https://github.com/JuliaData/DataFramesMeta.jl/pull/373))