Skip to content

Commit d97e486

Browse files
committed
Use ISO 8601 dates in changelog
1 parent dfd1549 commit d97e486

File tree

1 file changed

+27
-27
lines changed

1 file changed

+27
-27
lines changed

CHANGELOG.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## 0.6.5 (11th March 2023)
8+
## 0.6.5 (2023-03-11)
99

1010
### Added
1111
- When nothing is selected, send to REPL sends the current line (@suhr)
@@ -15,70 +15,70 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515
- Fixed various comment syntax highlighting cases (@jryans)
1616
- Updated dependencies
1717

18-
## 0.6.4 (2nd March 2022)
18+
## 0.6.4 (2022-03-02)
1919
- Updated dependencies
2020
- Hopefully finally packaged the correct code
2121

22-
## 0.6.3 (26th January 2022)
22+
## 0.6.3 (2022-01-26)
2323
- Fixed: A packaging issue that caused the previous version not to fix anything
2424
- Fixed: A weird behaviour in Powershell (thanks, @CatEricka)
2525

26-
## 0.6.2 (13th January 2022)
26+
## 0.6.2 (2022-01-13)
2727

2828
- Fixed: Incorrect quoting of racket paths on Windows (thanks, @shocoman)
2929
- Fixed: Incorrect folding of code (thanks, @shocoman)
3030
- Fixed: Errortrace causing the REPL to be unusable
3131

32-
## 0.6.1 (26th December 2021)
32+
## 0.6.1 (2021-12-26)
3333

3434
- Fixed: Escape sequences now work in regexp bytestrings as well
3535

36-
## 0.6.0 (26th December 2021)
36+
## 0.6.0 (2021-12-26)
3737

3838
- It is now possible to configure the command used for launching the language server and also the arguments that are passed into it. This should make the workarounds in WSL and Docker easier.
3939
- It is now possible to configure the arguments that are passed to `racket` during REPL creation
4040
- Improved quoting of command-line arguments, fixing many little bugs
4141
- Settings have been renamed and reorganised for greater clarity
4242

43-
## 0.5.8 (1st September 2021)
43+
## 0.5.8 (2021-09-01)
4444

4545
- Added two separate settings for Racket path, one used for the LSP, other of the REPL
4646
- Fixed potential vulnerabilities by updating npm packages
4747

48-
## 0.5.7 (20th January 2021)
48+
## 0.5.7 (2021-01-20)
4949

5050
- Added an option to disable the LSP integration
5151

52-
## 0.5.6 (5th May 2020)
52+
## 0.5.6 (2020-05-05)
5353

5454
- Fixed issues for cmd.exe Windows users
5555
- Fixed the URI encoding issue that prevented the LSP working on Windows
5656

57-
## 0.5.5 (4th May 2020)
57+
## 0.5.5 (2020-05-04)
5858

5959
### Changed
6060
- Replaced the custom LSP fork with the official version, which can be installed simply by running `raco pkg install racket-langserver`. This prevents the headaches of managing a custom forked LSP.
6161

6262
### Fixed
6363
- Launching the LSP now correctly uses the value of `magic-racket.general.racketPath`.
6464

65-
## 0.5.4 (2nd May 2020)
65+
## 0.5.4 (2020-05-02)
6666

6767
- Minor changes to the marketplace page of Magic Racket.
6868

69-
## 0.5.3 (2nd May 2020)
69+
## 0.5.3 (2020-05-02)
7070

7171
- Fixed the infinite loop caused by opening an empty file.
7272

73-
## 0.5.2 (1st May 2020)
73+
## 0.5.2 (2020-05-01)
7474

7575
- Add the trace setting to help debug the LSP.
7676

77-
## 0.5.1 (1st May 2020)
77+
## 0.5.1 (2020-05-01)
7878

7979
- Minor changes to README and the marketplace page of Magic Racket.
8080

81-
## 0.5.0 (1st May 2020)
81+
## 0.5.0 (2020-05-01)
8282

8383
### Added
8484

@@ -90,41 +90,41 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9090

9191
- Ditched the old unintuitive REPL workflow for a new `one file = one repl` one. No more REPL headaches!
9292

93-
## 0.4.5 (29th October 2019)
93+
## 0.4.5 (2019-10-29)
9494

9595
- It is now possible to open a REPL without needing to have a file open first.
9696
- Changes to how REPL handling works (see the README for in-depth description).
9797
- You can now type the lambda symbol by using the new snippet `lmb` or via a shortcut.
9898

99-
## 0.4.2, 0.4.3, 0.4.4 (24th October 2019)
99+
## 0.4.2, 0.4.3, 0.4.4 (2019-10-24)
100100

101101
- Minor changes to README and the marketplace page of Magic Racket.
102102

103-
## 0.4.1 (24th October 2019)
103+
## 0.4.1 (2019-10-24)
104104

105105
- Update word separators, so that `enter!` is taken as a one word.
106106

107-
## 0.4.0 (24th October 2019)
107+
## 0.4.0 (2019-10-24)
108108

109109
- You can now load the current file into a Racket REPL.
110110
- You can now run the whole file in a terminal.
111111
- You can execute selection in the REPL.
112112

113-
## 0.3.3 (6th March 2019)
113+
## 0.3.3 (2019-03-06)
114114

115115
- Fixed the highlighting of `#\(`.
116116
- Fixed the highlighting of some other weird characters, which were previously not recognized as characters at all.
117117

118-
## 0.3.2 (1st March 2019)
118+
## 0.3.2 (2019-03-01)
119119

120120
- Added a new scope for invalid escape characters in string sequences.
121121
- A valid escape sequence is, for example, `\n`, while `\O` is an invalid one—it triggers a runtime error. The second one will now be colored red in supported themes (most themes, actually), to help prevent these stupid errors.
122122

123-
## 0.3.1 (20th February 2019)
123+
## 0.3.1 (2019-02-20)
124124

125125
- Fixed the highlighting of `,symbol` and `,@symbol`.
126126

127-
## 0.3.0 (1st February 2019)
127+
## 0.3.0 (2019-02-01)
128128

129129
### Changed
130130

@@ -137,12 +137,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
137137

138138
- The behavior of quotes is now consistent.
139139

140-
## 0.2.1 (31th January 2019)
140+
## 0.2.1 (2019-01-31)
141141

142142
- Fixed handling of here strings.
143143
- Fixed the here string terminating sequence.
144144

145-
## 0.2.0 (31th January 2019)
145+
## 0.2.0 (2019-01-31)
146146

147147
- Improved support for all numbers.
148148
- Parts of invalid numbers are no longer being highlighted as valid.
@@ -151,10 +151,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
151151

152152
From now on, if your number isn't getting highlighted, it's most likely due to it being wrong, and it probably won't be accepted by the racket reader.
153153

154-
## 0.1.1 (30th January 2019)
154+
## 0.1.1 (2019-01-30)
155155

156156
- Minor changes. Bigger coming up.
157157

158-
## 0.1.0 (30th January 2019)
158+
## 0.1.0 (2019-01-30)
159159

160160
- The very first release. Everything has changed!

0 commit comments

Comments
 (0)