From 3c7f80152b81bd6578bdedf538411e9543223139 Mon Sep 17 00:00:00 2001 From: jean Date: Fri, 16 Aug 2024 07:53:32 +0200 Subject: [PATCH] docs: add warning about exprimental version --- README.md | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f36515d..ecbdf8b 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Workflow +> This package is still experimental and may change radically until the next minor version. + If you've been programming for a while, you've likely encountered workflows. They represent the various **states** and **transitions** that an entity can go through in a system. For example, let's say you're developing a blog and want to allow users to share posts. You'll need to establish some rules: diff --git a/package.json b/package.json index c80b752..c03b5d5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@jean-michelet/workflow", - "version": "1.0.4", + "version": "1.0.5", "description": "Manage the life cycle of an entity.", "main": "dist/index.js", "types": "dist/index.d.ts",