Skip to content

Commit 39d1fd0

Browse files
committed
Release 0.5.0
Signed-off-by: deadprogram <ron@hybridgroup.com>
1 parent d987df9 commit 39d1fd0

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2019-2023 TinyGo Authors. All rights reserved.
1+
Copyright (c) 2019-2025 TinyGo Authors. All rights reserved.
22

33
Redistribution and use in source and binary forms, with or without
44
modification, are permitted provided that the following conditions are

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22

33
[![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)
44

5-
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).
5+
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).
66

77
![example](https://raw.githubusercontent.com/tinygo-org/tinydraw/master/example.png)
88

99
This package is experimental and may change in the future. It has not been optimized for speed or memory usage (yet).
10+
1011
## License
1112

1213
[This project is licensed](./LICENSE) under the BSD 3-clause license, just like the [Go project](https://golang.org/LICENSE) itself.

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ module tinygo.org/x/tinydraw
22

33
go 1.24
44

5-
require tinygo.org/x/drivers v0.32.0
5+
require tinygo.org/x/drivers v0.34.0
66

77
require github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 h1:El6M4kTTCOh6aBiKaUGG7oYTSPP8MxqL4YI3kZKwcP4=
22
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510/go.mod h1:pupxD2MaaD3pAXIBCelhxNneeOaAeabZDe5s4K6zSpQ=
3-
tinygo.org/x/drivers v0.32.0 h1:qz7MRR1ZBIUhWC6kc4XuVNPr2+mUT8m7QJwA+Jji4IU=
4-
tinygo.org/x/drivers v0.32.0/go.mod h1:ZdErNrApSABdVXjA1RejD67R8SNRI6RKVfYgQDZtKtk=
3+
tinygo.org/x/drivers v0.34.0 h1:lw8ePJeUSn9oICKBvQXHC9TIE+J00OfXfkGTrpXM9Iw=
4+
tinygo.org/x/drivers v0.34.0/go.mod h1:ZdErNrApSABdVXjA1RejD67R8SNRI6RKVfYgQDZtKtk=

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ package tinydraw
44
// for support purposes.
55
//
66
// Update this value before release of new version of software.
7-
const Version = "0.4.0"
7+
const Version = "0.5.0"

0 commit comments

Comments
 (0)