From 9ed59edbd50cdc250451ec8eb78e70aca55d87b7 Mon Sep 17 00:00:00 2001 From: Nikita Vasilev Date: Mon, 6 Nov 2023 12:19:43 +0300 Subject: [PATCH] Update `README.md` & `CHANGELOG.md` (#8) * Update `README.md` * Update `CHANGELOG.md` * Update `README.md` --- CHANGELOG.md | 18 +++++++++++------- README.md | 10 +++++----- 2 files changed, 16 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e4a05db..853d45a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,26 +1,30 @@ # Change Log All notable changes to this project will be documented in this file. -## [Unreleased] +#### 1.0.x Releases +- `1.0.x` Releases - [1.0.0](#100) + +#### 0.0.x Releases +- `0.0.x` Releases - [0.0.1](#001) + +--- + +## [1.0.0](https://github.com/space-code/atomic/releases/tag/1.0.0) +Released on 2023-11-06. ## Added - Add `visionOS` support - Added in Pull Request [#6](https://github.com/space-code/atomic/pull/6). - - Updating pre-commit hook rules - Added in Pull Request [#5](https://github.com/space-code/atomic/pull/5). - - Integrate `CodeCov` - Added in Pull Request [#4](https://github.com/space-code/atomic/pull/4). - - Integrate `Danger` - Added in Pull Request [#3](https://github.com/space-code/atomic/pull/3). - - Change the locking mechanism from `DispatchSemaphore` to `unfair_lock_os` and add support for `@dynamicMemberLookup` - Added in Pull Request [#2](https://github.com/space-code/atomic/pull/2). -#### 1.x Releases -- `0.0.x` Releases - [0.0.1](#100) +--- ## [0.0.1](https://github.com/space-code/atomic/releases/tag/0.0.1) Released on 2023-06-18. diff --git a/README.md b/README.md index 8d09c2f..fd037ed 100644 --- a/README.md +++ b/README.md @@ -2,14 +2,14 @@

License -Platform -Swift5.5 +Swift Compability +Platform Compability CI - +CodeCov

## Description -`atomic` is a fast, safe class for making values thread-safe in Swift. +`atomic` is a Swift property wrapper designed to make values thread-safe. - [Usage](#usage) - [Requirements](#requirements) @@ -37,7 +37,7 @@ Once you have your Swift package set up, adding `atomic` as a dependency is as e ```swift dependencies: [ - .package(url: "https://github.com/space-code/atomic.git", .upToNextMajor(from: "0.0.1")) + .package(url: "https://github.com/space-code/atomic.git", .upToNextMajor(from: "1.0.0")) ] ```