Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md & CHANGELOG.md #8

Merged
merged 3 commits into from
Nov 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 11 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

<p align="center">
<a href="https://github.com/space-code/atomic/blob/main/LICENSE"><img alt="License" src="https://img.shields.io/github/license/space-code/atomic?style=flat"></a>
<a href="https://developer.apple.com/"><img alt="Platform" src="https://img.shields.io/badge/platform-ios%20%7C%20osx%20%7C%20watchos%20%7C%20tvos-%23989898"/></a>
<a href="https://developer.apple.com/swift"><img alt="Swift5.5" src="https://img.shields.io/badge/language-Swift5.5-orange.svg"/></a>
<a href="https://swiftpackageindex.com/space-code/atomic"><img alt="Swift Compability" src="https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fspace-code%2Fatomic%2Fbadge%3Ftype%3Dswift-versions">
<a href="https://swiftpackageindex.com/space-code/atomic"><img alt="Platform Compability" src="https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fspace-code%2Fatomic%2Fbadge%3Ftype%3Dplatforms">
<a href="https://github.com/space-code/atomic"><img alt="CI" src="https://github.com/space-code/atomic/actions/workflows/ci.yml/badge.svg?branch=main"></a>
<a href="https://github.com/apple/swift-package-manager" alt="RxSwift on Swift Package Manager" title="RxSwift on Swift Package Manager"><img src="https://img.shields.io/badge/Swift%20Package%20Manager-compatible-brightgreen.svg" /></a>
<a href="https://codecov.io/gh/space-code/atomic"><img alt="CodeCov" src="https://codecov.io/gh/space-code/atomic/graph/badge.svg?token=XEAA2PB5PP"></a>
</p>

## 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)
Expand Down Expand Up @@ -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"))
]
```

Expand Down
Loading