clr

dmiller 2025-02-21T22:54:57.385239Z

[ANN} ClojureCLR 1.12.0 beta1 released. Just a few minor fixes/enhancements since the last alpha. I'm expecting this will go to general release pretty quickly. Have at it.

souenzzo 2025-02-22T17:18:46.976779Z

dotnet tool install -g --version 1.12.0-beta1 Clojure.Main
~/.dotnet/tools/Clojure.Main
user=> *clojure-version*
{:major 1, :minor 12, :incremental 0, :qualifier "beta1"}
Great install experiencie Quick n easy

🙌 1
seancorfield 2025-02-21T22:56:01.649569Z

And remind the room how to install/upgrade this?

dmiller 2025-02-21T23:02:48.500099Z

Assuming most folks are doing the tool install these days: If already installed, you need to uninstalls:

dotnet tool uninstall -g Clojure.Main
Then you can install the latest:
dotnet tool install -g --version 1.12.0-beta1 Clojure.Main
The version number is required since this is a pre-releaase version.

dmiller 2025-02-21T23:03:23.642629Z

Additional installation notes here if needed: https://github.com/clojure/clojure-clr/wiki/Getting-started

seancorfield 2025-02-21T23:04:34.044259Z

> Clojure.Main
Clojure 1.12.0-beta1
user=>
👍🏻

seancorfield 2025-02-21T23:05:53.945389Z

Updated both my Ubuntu and Powershell envs.