Gleam SDK for Pocketenv
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add initial changelog and update package metadata

+22 -1
+16
CHANGELOG.md
··· 1 + # Changelog 2 + 3 + All notable changes to this project will be documented in this file. 4 + 5 + The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), 6 + and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 7 + 8 + ## [0.1.0] - 2026-04-01 9 + 10 + ### Added 11 + 12 + - Initial Pocketenv Gleam client library 13 + - `new_client` function for creating a configured HTTP client 14 + - Sandbox API support via `ConnectedSandbox` 15 + - JSON-based request/response handling using `gleam_json` 16 + - HTTP client integration via `gleam_http` and `gleam_httpc`
+6 -1
gleam.toml
··· 1 1 name = "pocketenv" 2 - version = "1.0.0" 2 + version = "0.1.0" 3 + 4 + description = "Gleam SDK for Pocketenv" 5 + licences = ["MIT"] 6 + repository = { type = "github", user = "pocketenv-io", repo = "pocketenv-gleam" } 7 + links = [{ title = "Website", href = "https://pocketenv.io" }] 3 8 4 9 # Fill out these fields if you intend to generate HTML documentation or publish 5 10 # your project to the Hex package manager.