Update Gleam versions in README.md (#308)

This commit is contained in:
Richard Viney
2024-11-13 13:53:41 +13:00
committed by GitHub
parent 58e153bc87
commit 5fa4c5f4ff
13 changed files with 65 additions and 77 deletions
-19
View File
@@ -1,19 +0,0 @@
# gleam_gleam
A Gleam project
## Quick start
```sh
gleam run # Run the project
gleam test # Run the tests
gleam shell # Run an Erlang shell
```
## Installation
If available on Hex this package can be added to your Gleam project.
```sh
gleam add gleam_gleam
```
-16
View File
@@ -1,16 +0,0 @@
name = "gleam_gleam"
version = "0.1.0"
# Fill out these fields if you intend to generate HTML documentation or publish
# your project to the Hex package manager.
#
# licences = ["Apache-2.0"]
# description = "A Gleam library..."
# repository = { type = "github", user = "username", repo = "project" }
# links = [{ title = "Website", href = "https://gleam.run" }]
[dependencies]
gleam_stdlib = "~> 0.18"
[dev-dependencies]
gleeunit = "~> 0.5"
-11
View File
@@ -1,11 +0,0 @@
# This file was generated by Gleam
# You typically do not need to edit this file
packages = [
{ name = "gleam_stdlib", version = "0.22.3", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "F2C2D389B06426E1289D5419F89BDE8E0F7F35A40B2BBB3C88188481F0D44A9F" },
{ name = "gleeunit", version = "0.6.2", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "A006864621DB80C4FBB0746580703502FD81A4D38D23FCB20A8120984D353DF0" },
]
[requirements]
gleam_stdlib = "~> 0.18"
gleeunit = "~> 0.5"
@@ -1,5 +0,0 @@
import gleam/io
pub fn main() {
io.println("Hello from gleam_gleam!")
}
@@ -14,8 +14,10 @@ jobs:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: "23.2"
gleam-version: "0.23.0-rc1"
- run: gleam format --check src test
otp-version: "26.0.2"
gleam-version: "1.5.0"
rebar3-version: "3"
# elixir-version: "1.15.4"
- run: gleam deps download
- run: gleam test
- run: gleam format --check src test
@@ -1,4 +1,4 @@
*.beam
*.ez
build
/build
erl_crash.dump
+24
View File
@@ -0,0 +1,24 @@
# gleamgleam
[![Package Version](https://img.shields.io/hexpm/v/gleamgleam)](https://hex.pm/packages/gleamgleam)
[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/gleamgleam/)
```sh
gleam add gleamgleam@1
```
```gleam
import gleamgleam
pub fn main() {
// TODO: An example of the project in use
}
```
Further documentation can be found at <https://hexdocs.pm/gleamgleam>.
## Development
```sh
gleam run # Run the project
gleam test # Run the tests
```
+19
View File
@@ -0,0 +1,19 @@
name = "gleamgleam"
version = "1.0.0"
# Fill out these fields if you intend to generate HTML documentation or publish
# your project to the Hex package manager.
#
# description = ""
# licences = ["Apache-2.0"]
# repository = { type = "github", user = "", repo = "" }
# links = [{ title = "Website", href = "" }]
#
# For a full reference of all the available options, you can have a look at
# https://gleam.run/writing-gleam/gleam-toml/.
[dependencies]
gleam_stdlib = ">= 0.34.0 and < 2.0.0"
[dev-dependencies]
gleeunit = ">= 1.0.0 and < 2.0.0"
@@ -0,0 +1,5 @@
import gleam/io
pub fn main() {
io.println("Hello from gleamgleam!")
}