Skip to content

Commit

Permalink
changed from TupleVectors to StaticVectors
Browse files Browse the repository at this point in the history
  • Loading branch information
chakravala committed May 17, 2023
1 parent 8aa1276 commit 6a1130b
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ environment:
- julia_version: 1.5
- julia_version: 1.6
- julia_version: 1.7
- julia_version: 1.8
- julia_version: 1.9
- julia_version: nightly

platform:
Expand Down
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "TupleVectors"
uuid = "bda701b7-7ff5-4551-86da-655ebebc29fb"
name = "StaticVectors"
uuid = "20fadf95-9e3d-483c-97cd-cab2760e7998"
authors = ["Michael Reed"]
version = "1.0"

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# TupleVectors.jl
# StaticVectors.jl

*Statically sized tuple vectors for Julia*

Expand All @@ -18,9 +18,9 @@ as `FixedVector` for annotating standard `Vector`s with static size information.

### Quick start

Add *TupleVectors* from the [Pkg REPL](https://docs.julialang.org/en/latest/stdlib/Pkg/#Getting-Started-1), i.e., `pkg> add TupleVectors`. Then:
Add *StaticVectors* from the [Pkg REPL](https://docs.julialang.org/en/latest/stdlib/Pkg/#Getting-Started-1), i.e., `pkg> add StaticVectors`. Then:
```julia
using TupleVectors
using StaticVectors

# Create Values using various forms, using constructors, functions or macros
v1 = Values(1, 2, 3)
Expand Down
2 changes: 1 addition & 1 deletion src/TupleVectors.jl → src/StaticVectors.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# this file is inspired from StaticArrays.jl
# https://github.com/JuliaArrays/StaticArrays.jl

module TupleVectors
module StaticVectors

using LinearAlgebra

Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using TupleVectors
using StaticVectors
using Test, LinearAlgebra

#TODO
Expand Down

2 comments on commit 6a1130b

@chakravala
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/83800

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.0.0 -m "<description of version>" 6a1130b2b1bf3171329f3cc5fd8f9bf5f36992db
git push origin v1.0.0

Please sign in to comment.