From 39d1fd09f113042ddfed9fb86ea395dd255de741 Mon Sep 17 00:00:00 2001 From: deadprogram Date: Fri, 19 Dec 2025 18:57:38 +0100 Subject: [PATCH] Release 0.5.0 Signed-off-by: deadprogram --- LICENSE | 2 +- README.md | 3 ++- go.mod | 2 +- go.sum | 4 ++-- version.go | 2 +- 5 files changed, 7 insertions(+), 6 deletions(-) diff --git a/LICENSE b/LICENSE index 7930a9c..b289698 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2019-2023 TinyGo Authors. All rights reserved. +Copyright (c) 2019-2025 TinyGo Authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/README.md b/README.md index 9b38000..99b8a2a 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,12 @@ [![Build](https://github.com/tinygo-org/tinydraw/actions/workflows/build.yml/badge.svg?branch=dev)](https://github.com/tinygo-org/tinydraw/actions/workflows/build.yml) -TinyDraw is a package for drawing primitives on [TinyGo](https://tinygo.org/) displays. It is heavily based on the [Adafruit GFX library](https://github.com/adafruit/Adafruit-GFX-Library). +TinyDraw is a package for drawing primitives on [TinyGo](https://tinygo.org/) displays. It is heavily influenced by the [Adafruit GFX library](https://github.com/adafruit/Adafruit-GFX-Library). ![example](https://raw.githubusercontent.com/tinygo-org/tinydraw/master/example.png) This package is experimental and may change in the future. It has not been optimized for speed or memory usage (yet). + ## License [This project is licensed](./LICENSE) under the BSD 3-clause license, just like the [Go project](https://golang.org/LICENSE) itself. diff --git a/go.mod b/go.mod index 0401de2..89c4676 100644 --- a/go.mod +++ b/go.mod @@ -2,6 +2,6 @@ module tinygo.org/x/tinydraw go 1.24 -require tinygo.org/x/drivers v0.32.0 +require tinygo.org/x/drivers v0.34.0 require github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect diff --git a/go.sum b/go.sum index 1e16b5c..a1c68f7 100644 --- a/go.sum +++ b/go.sum @@ -1,4 +1,4 @@ github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 h1:El6M4kTTCOh6aBiKaUGG7oYTSPP8MxqL4YI3kZKwcP4= github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510/go.mod h1:pupxD2MaaD3pAXIBCelhxNneeOaAeabZDe5s4K6zSpQ= -tinygo.org/x/drivers v0.32.0 h1:qz7MRR1ZBIUhWC6kc4XuVNPr2+mUT8m7QJwA+Jji4IU= -tinygo.org/x/drivers v0.32.0/go.mod h1:ZdErNrApSABdVXjA1RejD67R8SNRI6RKVfYgQDZtKtk= +tinygo.org/x/drivers v0.34.0 h1:lw8ePJeUSn9oICKBvQXHC9TIE+J00OfXfkGTrpXM9Iw= +tinygo.org/x/drivers v0.34.0/go.mod h1:ZdErNrApSABdVXjA1RejD67R8SNRI6RKVfYgQDZtKtk= diff --git a/version.go b/version.go index 09701a4..88dec50 100644 --- a/version.go +++ b/version.go @@ -4,4 +4,4 @@ package tinydraw // for support purposes. // // Update this value before release of new version of software. -const Version = "0.4.0" +const Version = "0.5.0"