Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(main): release 0.7.0 #278

Merged
merged 4 commits into from
Apr 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/release-please/manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.6.2"
".": "0.7.0"
}
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
# Changelog

## [0.7.0](https://github.com/aileot/nvim-laurel/compare/v0.6.2...v0.7.0) (2024-04-14)

### ⚠ BREAKING CHANGES

- **option:** The previously deprecated macros (`set+`, `set^`, `set-`, `setlocal+`, `setlocal^`, `setlocal-`, `setglobal+`, `setglobal^`, `setglobal-`, `go+`, `go^`, `go-`) have been removed according to the "less" design principle of this project. Please make your own wrappers if you still need them: some sample snippets are available in [Cookbook](https://github.com/aileot/nvim-laurel/blob/main/COOKBOOK.md).
- **autocmd:** `autocmd` macros now interpret the symbol `*` at `pattern` position as an alias of `[:*]`. Since the symbol `*` is too unlikely to be overridden, this change is applied without deprecation notice.
- **module:** The module prefix `nvim-laurel` is renamed to `laurel` following the nvim community convention.

Just in case, please make sure to backup your nvim config files via `git`,
`cp`, etc., before updating the module name.
The following snippet is an example oneliner shell script to rename
`nvim-laurel` to `laurel` in `require`d or `import`ed via table, and
`:update` at once on nvim Ex command.

```bash
nvim -u NONE +'exe "argadd" glob(stdpath("config") .."**/*.fnl")->substitute("\n"," ","ge")' +'argdo %s;} :\zsnvim-\zelaurel;;e|%s;(require :\zsnvim-\zelaurel;;e|up' +qa
```

Tested only on `bash`.
The script might not work as expected on other shells.

(Alternatively, you can run `make fnl/nvim-laurel/` at nvim-laurel project
root if you doubt about updating the module name.)

### Features

* **autocmd:** make `au!`/`autocmd!` macro interpret the symbol `*` in pattern as an alias of `["*"]` ([#254](https://github.com/aileot/nvim-laurel/issues/254)) ([8b7b6da](https://github.com/aileot/nvim-laurel/commit/8b7b6da6341780fe5d6fae2f98630dc6963f0b36))


### Code Refactoring

* **module:** rename module `nvim-laurel` to `laurel` ([#266](https://github.com/aileot/nvim-laurel/issues/266)) ([fad4d55](https://github.com/aileot/nvim-laurel/commit/fad4d55332dd45242aec9bd1b060ef434c8a7e62))
* **option:** remove deprecated macros `set+`, `set-`, ... ([#273](https://github.com/aileot/nvim-laurel/issues/273)) ([95e8070](https://github.com/aileot/nvim-laurel/commit/95e8070f3d224e538a9f6fbcb5d924a4529e4154))

## [0.6.2](https://github.com/aileot/nvim-laurel/compare/v0.6.1...v0.6.2) (2024-04-07)


Expand Down