From cea82c1364e01f1c8a90557c070738d16143e2f6 Mon Sep 17 00:00:00 2001 From: Ryan Oldenburg Date: Thu, 25 Feb 2021 19:05:29 -0600 Subject: [PATCH] version 1.0.0 --- README.md | 4 ++-- pixie.nimble | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ee1e4e2..1e16747 100644 --- a/README.md +++ b/README.md @@ -175,8 +175,8 @@ let paint = Paint( vec2(100, 200) ], gradientStops: @[ - ColorStop(color: rgba(255, 0, 0, 255).color, position: 0), - ColorStop(color: rgba(255, 0, 0, 40).color, position: 1.0), + ColorStop(color: rgba(255, 0, 0, 255), position: 0), + ColorStop(color: rgba(255, 0, 0, 40), position: 1.0), ] ) diff --git a/pixie.nimble b/pixie.nimble index 8eaea71..836640d 100644 --- a/pixie.nimble +++ b/pixie.nimble @@ -1,4 +1,4 @@ -version = "0.0.21" +version = "1.0.0" author = "Andre von Houck and Ryan Oldenburg" description = "Full-featured 2d graphics library for Nim." license = "MIT"