Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Commit 144dd66

Browse files
committed
chore(release): prepare for v0.0.1
1 parent 97042b0 commit 144dd66

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
All notable changes to jule.nvim will be documented in this file.
44

5+
## [0.0.1] - 2025-01-29
6+
7+
### 🚀 Features
8+
9+
- basic flag functionality ([dbfe9b3](https://github.com/julelang/jule.nvim/commit/dbfe9b3c344a344666f62bd94d47fefeaab688ea))
10+
- errors & --no functionality ([8e43d26](https://github.com/julelang/jule.nvim/commit/8e43d268af67eea9b365b0fdefe698fd09b3c16b))
11+
- str arguments ([6b02794](https://github.com/julelang/jule.nvim/commit/6b027942a224c7a8767c447fd47e053c85fb4f46))
12+
13+
### 📚 Documentation
14+
15+
- *(readme)* update the main example ([97042b0](https://github.com/julelang/jule.nvim/commit/97042b0c260b31aade07ff317c4b3a4b27e92e25))
16+
17+
### ⚙️ Miscellaneous Tasks
18+
19+
- *(repo)* add funding ([b590ea1](https://github.com/julelang/jule.nvim/commit/b590ea18fecf9894dd8bb9ba1c332ef3866163d2))
20+
- *(ci)* add `typos` ([9a7a9c1](https://github.com/julelang/jule.nvim/commit/9a7a9c16bcf1788cfd06fc9c98751a1cd0777947))
21+
- redesign the repo ([b6e9b4b](https://github.com/julelang/jule.nvim/commit/b6e9b4ba262346a59f0d9c6918301ca2a3dc5d27))
22+
523
## [0.0.1-pre1] - 2024-12-22
624

725
### 🚀 Features

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ JULEC = julec
88
JULEFMT = julefmt
99

1010
NAME = cliq
11+
MODULES = internal
1112
EXAMPLES = simple autoHelp defaultValues
12-
LIB = $(NAME).jule LICENSE README.md
13+
LIB = $(NAME).jule $(MODULES) jule.mod LICENSE README.md
1314

1415
examples:
1516
mkdir -p examples/bin
@@ -30,6 +31,9 @@ run-examples: examples
3031

3132
format:
3233
$(JULEFMT) -w .
34+
@for module in $(MODULES); do \
35+
$(JULEFMT) -w $$module; \
36+
done
3337
@for example in $(EXAMPLES); do \
3438
$(JULEFMT) -w examples/$$example; \
3539
done

0 commit comments

Comments
 (0)