Skip to content
Open
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
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

SHELL := bash

GO-VERSION ?= 1.19.3
GO-VERSION ?= 1.24.0
CLOJURE-VERSION ?= 1.12.1

CLOJURE-STDLIB-VERSION := clojure-$(CLOJURE-VERSION)
Expand Down Expand Up @@ -60,6 +60,7 @@ GO-PLATFORMS := \
windows_arm \
windows_amd64 \
js_wasm \
wasip1_wasm \
$(EXTRA-GO-PLATFORMS)

GLJ-IMPORTS=$(foreach platform,$(GO-PLATFORMS) \
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ that all Go values can be used as Glojure values and vice versa.
## Prerequisites

Before you get started with Glojure, make sure you have installed
and have knowledge of Go (version 1.19 or higher).
and have knowledge of Go (version 1.24 or higher).

## Installation

Glojure is currently available from source for all platforms where Go
can run, and it requires at least go 1.19.
can run, and it requires at least go 1.24.

Install it with the `go install` command:
```
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/glojurelang/glojure

go 1.19
go 1.24

require (
bitbucket.org/pcastools/hash v1.0.5
Expand Down
338 changes: 338 additions & 0 deletions pkg/gen/gljimports/gljimports_darwin_amd64.go

Large diffs are not rendered by default.

338 changes: 338 additions & 0 deletions pkg/gen/gljimports/gljimports_darwin_arm64.go

Large diffs are not rendered by default.

339 changes: 339 additions & 0 deletions pkg/gen/gljimports/gljimports_js_wasm.go

Large diffs are not rendered by default.

343 changes: 343 additions & 0 deletions pkg/gen/gljimports/gljimports_linux_amd64.go

Large diffs are not rendered by default.

343 changes: 343 additions & 0 deletions pkg/gen/gljimports/gljimports_linux_arm64.go

Large diffs are not rendered by default.

Loading
Loading