Skip to content

Commit 012809c

Browse files
committed
Update README.md & CHANGELOG.md (#8)
* Update `README.md` * Update `CHANGELOG.md` * Update `README.md`
1 parent e387193 commit 012809c

2 files changed

Lines changed: 16 additions & 12 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,30 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4-
## [Unreleased]
4+
#### 1.0.x Releases
5+
- `1.0.x` Releases - [1.0.0](#100)
6+
7+
#### 0.0.x Releases
8+
- `0.0.x` Releases - [0.0.1](#001)
9+
10+
---
11+
12+
## [1.0.0](https://github.com/space-code/atomic/releases/tag/1.0.0)
13+
Released on 2023-11-06.
514

615
## Added
716
- Add `visionOS` support
817
- Added in Pull Request [#6](https://github.com/space-code/atomic/pull/6).
9-
1018
- Updating pre-commit hook rules
1119
- Added in Pull Request [#5](https://github.com/space-code/atomic/pull/5).
12-
1320
- Integrate `CodeCov`
1421
- Added in Pull Request [#4](https://github.com/space-code/atomic/pull/4).
15-
1622
- Integrate `Danger`
1723
- Added in Pull Request [#3](https://github.com/space-code/atomic/pull/3).
18-
1924
- Change the locking mechanism from `DispatchSemaphore` to `unfair_lock_os` and add support for `@dynamicMemberLookup`
2025
- Added in Pull Request [#2](https://github.com/space-code/atomic/pull/2).
2126

22-
#### 1.x Releases
23-
- `0.0.x` Releases - [0.0.1](#100)
27+
---
2428

2529
## [0.0.1](https://github.com/space-code/atomic/releases/tag/0.0.1)
2630
Released on 2023-06-18.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
<p align="center">
44
<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>
5-
<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>
6-
<a href="https://developer.apple.com/swift"><img alt="Swift5.5" src="https://img.shields.io/badge/language-Swift5.5-orange.svg"/></a>
5+
<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">
6+
<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">
77
<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>
8-
<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>
8+
<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>
99
</p>
1010

1111
## Description
12-
`atomic` is a fast, safe class for making values thread-safe in Swift.
12+
`atomic` is a Swift property wrapper designed to make values thread-safe.
1313

1414
- [Usage](#usage)
1515
- [Requirements](#requirements)
@@ -37,7 +37,7 @@ Once you have your Swift package set up, adding `atomic` as a dependency is as e
3737

3838
```swift
3939
dependencies: [
40-
.package(url: "https://github.com/space-code/atomic.git", .upToNextMajor(from: "0.0.1"))
40+
.package(url: "https://github.com/space-code/atomic.git", .upToNextMajor(from: "1.0.0"))
4141
]
4242
```
4343

0 commit comments

Comments
 (0)