From 2b7f7c30a7163cc6b2ad3fdaf94445c55698e3e1 Mon Sep 17 00:00:00 2001 From: Andrew MacMurray Date: Sun, 17 Dec 2023 12:53:55 +0000 Subject: [PATCH] Bump to v1.1.0 --- README.md | 13 +++++++------ elm.json | 4 ++-- package.json | 2 +- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index bcdb28d..892051b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # Elm Concurrent Task [![CI](https://github.com/andrewMacmurray/elm-concurrent-task/actions/workflows/ci.yml/badge.svg)](https://github.com/andrewMacmurray/elm-concurrent-task/actions/workflows/ci.yml) +[![npm version](https://badge.fury.io/js/@andrewmacmurray%2Felm-concurrent-task.svg)](https://badge.fury.io/js/@andrewmacmurray%2Felm-concurrent-task) ## What? @@ -12,7 +13,7 @@ This package is heavily inspired by [elm-pages](https://github.com/dillonkearns/ See the [examples](https://github.com/andrewMacmurray/elm-concurrent-task/tree/main/examples) for more things you can do! -View [the elm-package docs here](https://package.elm-lang.org/packages/andrewMacmurray/elm-concurrent-task/1.0.0/). +View [the elm-package docs here](https://package.elm-lang.org/packages/andrewMacmurray/elm-concurrent-task/1.1.0/). ## Why? @@ -173,11 +174,11 @@ However, there are a number of tasks built into the JavaScript runner and suppor Check out the built-ins for more details: -- [`Browser.Dom`](https://package.elm-lang.org/packages/andrewMacmurray/elm-concurrent-task/1.0.0/ConcurrentTask-Browser-Dom/) -- [`Http`](https://package.elm-lang.org/packages/andrewMacmurray/elm-concurrent-task/1.0.0/ConcurrentTask-Http/) -- [`Process`](https://package.elm-lang.org/packages/andrewMacmurray/elm-concurrent-task/1.0.0/ConcurrentTask-Process/) -- [`Random`](https://package.elm-lang.org/packages/andrewMacmurray/elm-concurrent-task/1.0.0/ConcurrentTask-Random/) -- [`Time`](https://package.elm-lang.org/packages/andrewMacmurray/elm-concurrent-task/1.0.0/ConcurrentTask-Time/) +- [`Browser.Dom`](https://package.elm-lang.org/packages/andrewMacmurray/elm-concurrent-task/1.1.0/ConcurrentTask-Browser-Dom/) +- [`Http`](https://package.elm-lang.org/packages/andrewMacmurray/elm-concurrent-task/1.1.0/ConcurrentTask-Http/) +- [`Process`](https://package.elm-lang.org/packages/andrewMacmurray/elm-concurrent-task/1.1.0/ConcurrentTask-Process/) +- [`Random`](https://package.elm-lang.org/packages/andrewMacmurray/elm-concurrent-task/1.1.0/ConcurrentTask-Random/) +- [`Time`](https://package.elm-lang.org/packages/andrewMacmurray/elm-concurrent-task/1.1.0/ConcurrentTask-Time/) ## How? diff --git a/elm.json b/elm.json index e1d819e..096e4a9 100644 --- a/elm.json +++ b/elm.json @@ -3,7 +3,7 @@ "name": "andrewMacmurray/elm-concurrent-task", "summary": "Run a tree of Tasks concurrently, call JS functions as Tasks (Task Ports)", "license": "MIT", - "version": "1.0.0", + "version": "1.1.0", "exposed-modules": [ "ConcurrentTask", "ConcurrentTask.Browser.Dom", @@ -25,4 +25,4 @@ "test-dependencies": { "elm-explorations/test": "2.1.1 <= v < 3.0.0" } -} \ No newline at end of file +} diff --git a/package.json b/package.json index a9dbe11..8bf6396 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@andrewmacmurray/elm-concurrent-task", - "version": "1.0.0", + "version": "1.1.0", "description": "Run a tree of Tasks concurrently, call JS functions as Tasks (Task Ports)", "main": "lib/cjs/index.js", "module": "lib/mjs/index.js",