From a303faf9bcf4342be34f9b7a1376cd7b5b710e7f Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Wed, 13 Nov 2024 16:29:51 +0100 Subject: [PATCH] Version 1.0.0 --- CHANGELOG.md | 12 +++++++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6712d8a..2726256 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## `1.0.0` - November 13th, 2024 + +Given that Rokit is already used in production by many Roblox developers, and many months have passed with no new major issues, it is time to release version `1.0.0`. + +This comes with a couple guarantees: + +- We will not be making any breaking changes to Rokit in the foreseeable future, and if we do, we will release a new major version. +- Rokit's tool storage & tool artifact selection algorithms are stable, and safe to rely on in production environments. +- New features and subcommands may still be added, as long as they do not break existing functionality. + +As always, run `rokit self-update` to update to the latest version of Rokit! 🚀 ### Changed diff --git a/Cargo.lock b/Cargo.lock index 4343324..de20652 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2149,7 +2149,7 @@ dependencies = [ [[package]] name = "rokit" -version = "0.2.5" +version = "1.0.0" dependencies = [ "anyhow", "async-once-cell", diff --git a/Cargo.toml b/Cargo.toml index 628471f..c4dc530 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rokit" -version = "0.2.5" +version = "1.0.0" edition = "2021" license = "MIT" repository = "https://github.com/rojo-rbx/rokit"