Skip to content

Commit 345385c

Browse files
authored
docs: Changelog for 0.2.6 (#909)
1 parent 5d4792e commit 345385c

File tree

2 files changed

+29
-12
lines changed

2 files changed

+29
-12
lines changed

CHANGELOG.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,34 @@
11
# PRQL Changelog
22

3-
## [unreleased]
4-
5-
### Features
3+
## 0.2.6 — 2022-08-05
64

75
### Fixes
86

9-
- Fix quoting on upper case `table` names (@max-sixty)
7+
- Adjust `fmt` to only escape names when needed (@aljazerzen, #907)
8+
- Fix quoting on upper case `table` names (@max-sixty, #893)
9+
- Fix scoping of identical column names from multiple tables (@max-sixty, #908)
10+
- Fix parse error on newlines in a `table` (@sebastiantoh 🆕, #902)
11+
- Fix quoting of upper case table names (@max-sixty, #893)
1012

1113
### Documentation
1214

13-
### Web
14-
15-
### Integrations
15+
- Add docs on [Architecture](prql-compiler/ARCHITECTURE.md) (@aljazerzen, #904)
16+
- Add Changelog (@max-sixty, #890 #891)
1617

1718
### Internal changes
1819

1920
- Start trial using Conventional Commits (@max-sixty, #889)
2021
- Add crates.io release workflow, docs (@max-sixty, #887)
2122

22-
## [0.2.5] - 2022-07-29
23+
## 0.2.5 - 2022-07-29
2324

2425
0.2.5 is a very small release following 0.2.4 yesterday. It includes:
2526

2627
- Add the ability to represent single brackets in an s-string, with two brackets (#752, @max-sixty )
2728
- Fix the "Copy to Clipboard" command in the Playground, for Firefox (#880,
2829
@mklopets )
2930

30-
## [0.2.4] - 2022-07-28
31+
## 0.2.4 - 2022-07-28
3132

3233
0.2.4 is a small release following 0.2.3 a few days ago. The 0.2.4 release includes:
3334

@@ -40,7 +41,7 @@ Thanks to @ankane, `prql-compiler` is now available from homebrew core; `brew in
4041

4142
[^2]: we still need to update docs and add a release workflow for this: <https://github.com/prql/prql/issues/866>
4243

43-
## [0.2.3] - 2022-07-24
44+
## 0.2.3 - 2022-07-24
4445

4546
A couple of weeks since the 0.2.2 release: we've squashed a few bugs, added some mid-sized features to the language, and made a bunch of internal improvements.
4647

@@ -68,7 +69,7 @@ We're also going to document and modularize the compiler further. It's importan
6869

6970
Thank you!
7071

71-
## [0.2.2] - 2022-07-10
72+
## 0.2.2 - 2022-07-10
7273

7374
We're a couple of weeks since our 0.2.0 release. Thanks for the surge in interest and contributions! 0.2.2[^1] has some fixes & some internal improvements:
7475

@@ -89,7 +90,7 @@ For those interesting in joining, we also have a new [Contributing page](https:/
8990

9091
[^1]: Think of 0.2.1 like C+ :)
9192

92-
## [0.2.0] - 2022-06-27
93+
## 0.2.0 - 2022-06-27
9394

9495
🎉 🎉 **After several months of building, PRQL is ready to use!** 🎉 🎉
9596

CONTRIBUTING.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,12 +238,28 @@ raise an issue.
238238
239239
Currently we release in a semi-automated way:
240240
241+
- PR & merge an updated [Changelog](CHANGELOG.md).
241242
- Run `cargo release --no-push --no-publish --no-confirm -x patch` locally to
242243
bump the versions, and PR the change on a branch
243244
- After merging, go to [Draft a new
244245
release](https://github.com/prql/prql/releases/new), write up release notes,
245246
select a new tag to be created, and hit the "Publish" button.
246247
- From there, all packages are published automatically based on our [release
247248
workflow](.github/workflows/release.yaml).
249+
- Add in the sections for a new Changelog:
250+
251+
```md
252+
### Features
253+
254+
### Fixes
255+
256+
### Documentation
257+
258+
### Web
259+
260+
### Integrations
261+
262+
### Internal changes
263+
```
248264
249265
We may make this more automated in future; e.g. automatic changelog creation.

0 commit comments

Comments
 (0)