Skip to content

Commit 2e6d5a5

Browse files
committed
Bump to version 1.0
1 parent 72eb213 commit 2e6d5a5

3 files changed

Lines changed: 10 additions & 4 deletions

File tree

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
version:
19-
- '1.7'
19+
- '1.6'
2020
- '1.10'
2121
- '1.12'
2222
- 'pre'
@@ -30,7 +30,7 @@ jobs:
3030
- 'x86'
3131
exclude:
3232
- os: macos-latest
33-
version: '1.7'
33+
version: '1.6'
3434
- os: macos-latest
3535
arch: 'x86'
3636
steps:

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name = "MutatePlainDataArray"
22
uuid = "3b0f367b-da20-4531-811a-c13cc92422b5"
33
authors = ["Haoran Ni <haoranni@terpmail.umd.edu> and contributors"]
4-
version = "0.4.0"
4+
version = "1.0.0"
55

66
[compat]
7-
julia = "1.7"
7+
julia = "1.6"
88

99
[workspace]
1010
projects = ["test"]

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,9 @@ julia> b
4747
The mutation provided by this package is
4848
- **Efficient**. Under the hood, the mutation is achieved by pointer load/store, where the address offset is known at type inference time.
4949
- **Safe**. Compile-time type check is enforced. Reference to the original vector is obtained to prevent garbage collection. Bounds check is performed unless `@inbounds` is used. This package is inspired by and acts as a safer counterpart to [UnsafePointers.jl](https://github.com/cjdoris/UnsafePointers.jl).
50+
51+
## See also
52+
53+
[StructArrays.jl](https://github.com/JuliaArrays/StructArrays.jl)
54+
[FieldViews.jl](https://github.com/MasonProtter/FieldViews.jl)
55+
[BangBang.jl](https://github.com/JuliaFolds/BangBang.jl)

0 commit comments

Comments
 (0)