Skip to content

Commit

Permalink
increment version number
Browse files Browse the repository at this point in the history
  • Loading branch information
jpjones76 committed Mar 3, 2020
1 parent 1cf87b5 commit 122783a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "SeisIO"
uuid = "b372bb87-02dd-52bb-bcf6-c30dd83fd342"
authors = ["Joshua Jones <highly.creative.pseudonym@gmail.com>"]
version = "0.4.1"
version = "1.0.0"

[deps]
Blosc = "a74b3585-a348-5f62-a45c-50e91977d574"
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.4.1'
version = u'1.0.0'
# The full version, including alpha/beta/rc tags.
release = u'0.4.1'
release = u'1.0.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/src/Formats/timeseries.rst
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ Examples

Memory Mapping
==============
`memmap=true` is considered unsafe because Julia language handling of SIGBUS/SIGSEGV and associated risks is undocumented as of SeisIO v0.4.1. Thus, for example, we don't know what a connection failure during memory-mapped file I/O does. In some languages, this situation without additional signal handling was notorious for corrupting files.
`memmap=true` is considered unsafe because Julia language handling of SIGBUS/SIGSEGV and associated risks is undocumented as of SeisIO v1.0.0. Thus, for example, we don't know what a connection failure during memory-mapped file I/O does. In some languages, this situation without additional signal handling was notorious for corrupting files.

**Under no circumstances** should `mmap=true` be used to read files directly from a drive whose host device power management is independent of the destination computer's. This includes all work flows that involve reading files directly into memory from a connected data logger. It is *not* a sufficient workaround to set a data logger to "always on".

Expand Down

4 comments on commit 122783a

@jpjones76
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
Copy link

Choose a reason for hiding this comment

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

Error while trying to register: "Tag with name 1.0.0 already exists and points to a different commit"

@jpjones76
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
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/10465

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 Julia TagBot is installed, or can be done manually through the github interface, or via:

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

Please sign in to comment.