This repository was archived by the owner on Feb 21, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to jule.nvim will be documented in this file.
4
4
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
+
5
23
## [ 0.0.1-pre1] - 2024-12-22
6
24
7
25
### 🚀 Features
Original file line number Diff line number Diff line change @@ -8,8 +8,9 @@ JULEC = julec
8
8
JULEFMT = julefmt
9
9
10
10
NAME = cliq
11
+ MODULES = internal
11
12
EXAMPLES = simple autoHelp defaultValues
12
- LIB = $(NAME ) .jule LICENSE README.md
13
+ LIB = $(NAME ) .jule $( MODULES ) jule.mod LICENSE README.md
13
14
14
15
examples :
15
16
mkdir -p examples/bin
@@ -30,6 +31,9 @@ run-examples: examples
30
31
31
32
format :
32
33
$(JULEFMT ) -w .
34
+ @for module in $(MODULES ) ; do \
35
+ $(JULEFMT ) -w $$ module; \
36
+ done
33
37
@for example in $(EXAMPLES ) ; do \
34
38
$(JULEFMT ) -w examples/$$ example; \
35
39
done
You can’t perform that action at this time.
0 commit comments