Skip to content

Commit

Permalink
release v0.1.1 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
islent committed Nov 26, 2021
1 parent e91ffbc commit f9b73ab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "AstroIO"
uuid = "c85a633c-0c3f-44a2-bffe-7f9d0681b3e7"
authors = ["islent <leoislent@gmail.com>"]
version = "0.1.0"
version = "0.1.1"

[deps]
BangBang = "198e06fe-97b7-11e9-32a5-e1d131e6ad66"
Expand Down
10 changes: 5 additions & 5 deletions docs/src/manual/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ pkg> test AstroIO

## Basic Usage

```@repl guide
```julia
using AstroIO
```

### Gadget2

Suffixes `gadget2`, `Gadget2`, `GADGET2` are supported

```@repl guide
```julia
header, data = read_gadget2("snapshot.gadget2", uAstro)

write_gadget2("output.Gadget2", header, data)
Expand All @@ -39,20 +39,20 @@ Supported units: `uAstro`, `uGadget2`, `uSI`, `uCSG`.

### Use FileIO interfaces

```@repl guide
```julia
header, data = load("snapshot.gadget2")
save("FileIO.gadget2", header, data)
```

### Output CSV

```@repl guide
```julia
write_csv("output", csv) # No suffix
```

### Save and load with JLD2

```@repl guide
```julia
write_gadget2_jld("output.jld2", header, data, uGadget2)
write_jld("NoHeader.jld2", data)

Expand Down

2 comments on commit f9b73ab

@islent
Copy link
Member Author

@islent islent commented on f9b73ab Nov 26, 2021

Choose a reason for hiding this comment

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

@JuliaRegistrator register

Release notes:

  • FileIO interfaces
  • StructArray
  • format2
  • acc, pot I/O
  • file unit conversion

@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/49413

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 v0.1.1 -m "<description of version>" f9b73ab7c657413a7ce2cc0fd6809377252e9d34
git push origin v0.1.1

Please sign in to comment.