Skip to content

Commit bea3995

Browse files
committed
Prepares for the release v0.1.2
1 parent 6aca8fa commit bea3995

File tree

9 files changed

+28
-22
lines changed

9 files changed

+28
-22
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@ out/
88
.nrepl-port
99
.shadow-cljs/
1010
.cljs_node_repl/
11+
.clj-kondo/
1112

1213
*.iml

CHANGELOG.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66

77
## [Unreleased]
88

9+
## [0.1.2] - 2025-10-04
910

11+
### Fixed
12+
13+
- Cljdoc documentation is fixed.
14+
- Fixed a bug which prevented reactive fragments (e.g. if, for) to be used directly inside each other.
15+
16+
### Changed
17+
18+
- Bumped the dependencies on the example projects, notably Shadow-CLJS.
1019

1120
## [0.1.1] - 2025-04-24
1221

@@ -17,11 +26,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
1726

1827
### Added
1928

20-
- Documentation about the attributes are properties in Vcup.
21-
22-
### Fixed
23-
24-
- Fixed a bug which prevented reactive fragments (e.g. if, for) to be used directly inside each other.
29+
- Documentation about the attributes and properties in Vcup.
2530

2631
## [0.1.0] - 2025-03-17
2732

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Vrac
22

3-
[![Clojars Project](https://img.shields.io/clojars/v/fi.metosin/vrac.svg)](https://clojars.org/fi.metosin/vrac)
3+
[![Clojars Project](https://img.shields.io/clojars/v/taipei.404.vrac/vrac.svg)](https://clojars.org/taipei.404.vrac/vrac)
44
[![Slack](https://img.shields.io/badge/slack-vrac-orange.svg?logo=slack)](https://clojurians.slack.com/app_redirect?channel=vrac)
5-
[![cljdoc badge](https://cljdoc.org/badge/fi.metosin/vrac)](https://cljdoc.org/d/fi.metosin/vrac)
5+
[![cljdoc badge](https://cljdoc.org/badge/taipei.404.vrac/vrac)](https://cljdoc.org/d/taipei.404.vrac/vrac)
66

77
> The only way to stop using JS is to stop using JS.
88
@@ -25,9 +25,9 @@ Features on the roadmap:
2525

2626
## Project status
2727

28-
This project is currently [experimental](https://github.com/metosin/open-source/blob/main/project-status.md#experimental).
28+
This project is currently in its early development.
2929

30-
It is implemented enough to be useful, but not ready for production yet.
30+
It doesn't have known bugs, is implemented enough to be useful, but not ready for production yet.
3131

3232
## License
3333

deps.edn

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
:jar {:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.1.303"}}
2424
:exec-fn hf.depstar/jar
2525
:exec-args {:sync-pom true
26-
:group-id "fi.metosin"
26+
:group-id "taipei.404.vrac"
2727
:artifact-id "vrac"
28-
:version "0.1.1"
28+
:version "0.1.2"
2929
:jar "vrac.jar"}}
3030

3131
:deploy {:extra-deps {slipset/deps-deploy {:mvn/version "0.2.2"}}

example/react-interop/deps.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
:deps {org.clojure/clojure {:mvn/version "1.12.3"}
44
org.clojure/clojurescript {:mvn/version "1.12.42"}
55
thheller/shadow-cljs {:mvn/version "3.2.1"}
6-
fi.metosin/vrac {:local/root "../.."}
6+
taipei.404.vrac/vrac {:local/root "../.."}
77
fi.metosin/si-frame {:mvn/version "1.4.3.0"}
88
fi.metosin/siagent {:mvn/version "0.1.0"}
99
com.pitch/uix.core {:mvn/version "1.4.5"}

example/si-frame-simple/deps.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
:deps {org.clojure/clojure {:mvn/version "1.12.3"}
44
org.clojure/clojurescript {:mvn/version "1.12.42"}
55
thheller/shadow-cljs {:mvn/version "3.2.1"}
6-
fi.metosin/vrac {:local/root "../.."}
6+
taipei.404.vrac/vrac {:local/root "../.."}
77
fi.metosin/si-frame {:mvn/version "1.4.3.0-no-siagent"}}
88

99
:aliases {;; clojure -M:outdated --upgrade

example/test-app/deps.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
:deps {org.clojure/clojure {:mvn/version "1.12.3"}
44
org.clojure/clojurescript {:mvn/version "1.12.42"}
55
thheller/shadow-cljs {:mvn/version "3.2.1"}
6-
fi.metosin/vrac {:local/root "../.."}}
6+
taipei.404.vrac/vrac {:local/root "../.."}}
77

88
:aliases {;; clojure -M:outdated --upgrade
99
:outdated {:extra-deps {com.github.liquidz/antq {:mvn/version "2.11.1276"}}

example/todomvc/deps.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
org.clojure/clojurescript {:mvn/version "1.12.42"}
55
thheller/shadow-cljs {:mvn/version "3.2.1"}
66
metosin/reitit-frontend {:mvn/version "0.9.1"}
7-
fi.metosin/vrac {:local/root "../.."}
7+
taipei.404.vrac/vrac {:local/root "../.."}
88
fi.metosin/si-frame {:mvn/version "1.4.3.0-no-siagent"}}
99

1010

pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<packaging>jar</packaging>
5-
<groupId>fi.metosin</groupId>
5+
<groupId>taipei.404.vrac</groupId>
66
<artifactId>vrac</artifactId>
7-
<version>0.1.1</version>
7+
<version>0.1.2</version>
88
<name>vrac</name>
99
<description>A frontend rendering library in Clojure, for Clojurists</description>
1010
<inceptionYear>2025</inceptionYear>
@@ -15,16 +15,16 @@
1515
</license>
1616
</licenses>
1717
<scm>
18-
<url>https://github.com/metosin/vrac</url>
19-
<connection>scm:git:git://github.com/metosin/vrac.git</connection>
20-
<developerConnection>scm:git:ssh://[email protected]/metosin/vrac.git</developerConnection>
21-
<tag>v0.1.1</tag>
18+
<url>https://github.com/green-coder/vrac</url>
19+
<connection>scm:git:git://github.com/green-coder/vrac.git</connection>
20+
<developerConnection>scm:git:ssh://[email protected]/green-coder/vrac.git</developerConnection>
21+
<tag>v0.1.2</tag>
2222
</scm>
2323
<dependencies>
2424
<dependency>
2525
<groupId>org.clojure</groupId>
2626
<artifactId>clojure</artifactId>
27-
<version>1.12.2</version>
27+
<version>1.12.3</version>
2828
</dependency>
2929
<dependency>
3030
<groupId>fi.metosin</groupId>

0 commit comments

Comments
 (0)