Commitd1c6561bRecorded26 Apr 2026Repositorysigil-hooks
Add Woodpecker CI; drop CHANGELOG.md
Message
- .woodpecker.yml: minimal pipeline that fetches the pinned sigil v0.14.0 release binary, runs sigil deps install, then sigil test on push + PR + manual triggers. Bump the pin via search/replace when a new release is cut. - Drop the inherited CHANGELOG.md per the no-CHANGELOG policy: release narrative now lives in annotated git tags. See procedures/library-release-conventions.
Changed
.woodpecker.yml | 29 +++++++++++++++++++++++++++++
CHANGELOG.md | 89 -----------------------------------------------------------------------------------------
sigil.lock | 9 +++++++++
3 files changed, 38 insertions(+), 89 deletions(-)Diff
.woodpecker.ymladded
@@ -0,0 +1,29 @@
+1
# Woodpecker CI configuration for Codeberg+2
# https://docs.codeberg.org/ci/+3
#+4
# Library CI: fetch the pinned sigil release binary, install deps via+5
# from-git pins, run the test suite. Pinned to a specific monorepo+6
# release (rather than the rolling `dev`) so a flaky monorepo doesn't+7
# cascade across all extracted-repo CIs. Bump via search/replace when+8
# a new release is cut.+9
#+10
# Single-step on purpose: $HOME-rooted state from `sigil deps install`+11
# does not survive a Woodpecker step boundary, so fetch + deps + test+12
# must all run in the same container.+13
+14
when:+15
- event: [push, pull_request, manual]+16
+17
variables:+18
- &alpine_image "alpine:3.20"+19
+20
steps:+21
test:+22
image: *alpine_image+23
commands:+24
- apk add --no-cache curl ca-certificates git+25
- curl -fLo ./sigil https://codeberg.org/sigil/sigil/releases/download/v0.14.0/sigil-linux-amd64-static+26
- chmod +x ./sigil+27
- ./sigil --version+28
- ./sigil deps install+29
- ./sigil testCHANGELOG.mddeleted
@@ -1,89 +0,0 @@
−1
# Changelog−2
−3
Versions are synced with Sigil releases. A missing entry indicates no changes for that version.−4
−5
All notable changes to this project will be documented in this file.−6
−7
The format is based on [Keep a Changelog](https://keepachangelog.com/),−8
and this project adheres to [Semantic Versioning](https://semver.org/).−9
−10
## [0.7.0] - 2026-03-01−11
−12
### Added−13
−14
- Added procedure specifications with inline (: ...) syntax, optional runtime checking via sigil-checks feature, and predicate combinators (any-of, maybe, list-of, none-of).−15
- Added procedure specs and docstrings to all exported procedures.−16
- Added procedure specs and docstrings to all exported procedures.−17
- Added define-native compiler form for declaring native C bindings in Scheme modules with optional specs and docstrings.−18
- Added VM-level exception handler stack for tail-optimized guard semantics, replacing prompt-based exception handling.−19
- Added multi-VM threading with share-nothing architecture, message passing, and parallel-map for data-parallel workloads.−20
- Added preemptive yield points at loop back-edges to prevent CPU-bound tasks from starving the async scheduler.−21
- Added procedure specifications with inline (: ...) syntax, optional runtime checking via sigil-checks feature, and predicate combinators (any-of, maybe, list-of, none-of).−22
- Added procedure specs and docstrings to all exported procedures.−23
- Added procedure specs and docstrings to all exported procedures.−24
- Added procedure specs and docstrings to all exported procedures.−25
- Added immediate-mode terminal UI toolkit with native C grid, layout system, component rendering, event parsing, text input, and chat demo application.−26
- Added procedure specs and docstrings to all exported procedures.−27
- Added procedure specs and docstrings to all exported procedures.−28
- Added procedure specs and docstrings to all exported procedures.−29
- Added procedure spec display in MCP search and exports tool output.−30
- Added streaming HTTP download support with binary-safe reads and file serving with Range request support.−31
- Added procedure specs and docstrings to all exported procedures.−32
- Added procedure specs and docstrings to all exported procedures.−33
- Added procedure specs and docstrings to all exported procedures.−34
−35
### Changed−36
−37
- Changed I/O multiplexing to use epoll (Linux) and kqueue (macOS/BSD) instead of select(2) for better scalability.−38
- Changed I/O multiplexing to use epoll (Linux) and kqueue (macOS/BSD) instead of select(2) for better scalability.−39
−40
### Fixed−41
−42
- Fixed false positive capture corruption check in serializer, Windows build issues with mingw macro collision and unix-connect, closure arity errors now catchable by guard, and exception handler double-pop segfault.−43
- Fixed sigil docs api command and added procedure spec signatures to generated API documentation.−44
−45
## [0.5.0] - 2026-02-17−46
−47
### Added−48
−49
- Added test harness generation and build support for packages with native dependencies. Improved native package handling, added c-flags field to library struct. Fixed stdlib inclusion in bundles with custom native runtimes, directory structure preservation in compile-c-sources, and absolute sigil-lib include path resolution.−50
- Added test coverage.−51
- Added test coverage.−52
- Added test coverage for TCP/UDP/address operations and crypto primitives.−53
- Added test coverage for TCP/UDP/address operations and crypto primitives.−54
- Added test coverage.−55
- Added test coverage.−56
- Added test coverage.−57
−58
### Fixed−59
−60
- Fixed random seed initialization crash caused by flonum-to-bignum promotion in modulo. Fixed status command crash when displaying projected versions for packages without changes.−61
- Fixed SSE and remove-after initialization on child elements. Added comprehensive test coverage for routing, middleware, cookies, security, SSE, and response helpers.−62
−63
### Other−64
−65
- New packages split from sigil-studio. Font and image modules moved to (sigil graphics *) namespace.−66
- GC correctness: added write barriers to all heap mutation sites, enabled GC during compilation with full compiler rooting, and added GC stress testing infrastructure. Completed HAMT dict implementation (printing, equality, collision handling, structural removal). Added arbitrary-precision bignum type with full reader/VM/native/serializer integration. Performance: inline caching for module binding lookups, peephole optimizer with 8 superinstruction patterns. Improved error handling: replaced exit(1) with recoverable errors, fixed error propagation in vm_error_abort and OP_ABORT_TO_PROMPT. Added definition location tracking in stack traces. Implemented VFS/bundle directory listing. Fixed number->string precision for exact IEEE 754 roundtrip. Removed dead opcodes.−67
- Configured custom mbedTLS for TLS 1.2 only. Added test coverage for connection predicates, failure paths, and error handling.−68
- New packages split from sigil-studio. Font and image modules moved to (sigil graphics *) namespace.−69
−70
## [0.1.0] - 2026-01-09−71
−72
### Other−73
−74
- Initial release of the test framework with assertions, test discovery, filtering, and formatted output.−75
- Initial release with TCP and UDP socket support for network programming.−76
- Core runtime providing a bytecode VM with incremental mark-sweep garbage collector, S-expression reader with extensible syntax, and hygienic macro system supporting syntax-rules and syntax-case. Native bindings for I/O, filesystem, networking, process management, SQLite, and cryptographic hashing.−77
- Initial release with SXML utilities for XML/HTML document construction and manipulation.−78
- JWT token encoding and verification with HS256 signing support.−79
- Model Context Protocol server implementation for building AI tool integrations with resources, tools, and prompts.−80
- SQLite database bindings with prepared statements, transactions, and result iteration.−81
- Initial release of the WebAssembly runtime for running Sigil applications in the browser via Emscripten.−82
- Initial release of changeset-based release management with version bumping, changelog generation, and git integration.−83
- Initial release of the interactive web playground for trying Sigil in the browser.−84
- Core standard library with (sigil core) providing pattern matching, records, delimited continuations, and utilities for arrays, dicts, strings, and lists. Includes modules for math operations, process spawning, time/date handling, filesystem access, and path manipulation. Nearly complete R7RS (scheme base) compatibility with additional modules for I/O, exceptions, generators, and coroutines.−85
- Static site generation with composable pipeline for Markdown files and module documentation.−86
- Initial release with Markdown parsing and frontmatter extraction.−87
- Initial release with ANSI escape code utilities for terminal colors, bold, dim, and other text formatting.−88
- Initial release with extensible hook system for REPL and application customization.−89
sigil.lockadded
@@ -0,0 +1,9 @@
+1
;; Auto-generated by sigil deps install. Do not edit.+2
(lock+3
(package name: "sigil-stdlib"+4
url: "codeberg:sigil/sigil-lang"+5
ref: "^0.14"+6
sha: "dba24e3fe531bc150bcf93444e764f87fb321850"+7
package-selector: "sigil-stdlib"+8
version: "0.14.1")+9
)