Skip to content

Commit

Permalink
Merge pull request #409 from charlespierce/v0.4.1
Browse files Browse the repository at this point in the history
v0.4.1
  • Loading branch information
dherman committed May 7, 2019
2 parents 3b2a80b + 3e674ba commit 62f2476
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "notion"
version = "0.4.0"
version = "0.4.1"
authors = ["David Herman <david.herman@gmail.com>"]
license = "BSD-2-Clause"
repository = "https://github.com/notion-cli/notion"
Expand Down
5 changes: 5 additions & 0 deletions RELEASES.md
@@ -1,3 +1,8 @@
# Version 0.4.1

- Allow tool executions to pass through to the system if no Notion platform exists (#372)
- Improve installer support for varied Linux distros

# Version 0.4.0

- Update `notion install` to use `tool@version` formatting for specifying a tool (#383, #403)
Expand Down
8 changes: 7 additions & 1 deletion dev/unix/boot-install.sh
Expand Up @@ -91,7 +91,13 @@ notion_get_openssl_version() {
FULLVERSION="$(echo $LIB | awk '{print $2;}')"
MAJOR="$(echo ${FULLVERSION} | cut -d. -f1)"
MINOR="$(echo ${FULLVERSION} | cut -d. -f2)"
echo "${MAJOR}.${MINOR}"

# If we have version 1.0.x, check for RHEL / CentOS style OpenSSL SONAME (.so.10)
if [[ "${MAJOR}.${MINOR}" == "1.0" && -f "/usr/lib64/libcrypto.so.10" ]]; then
echo "rhel"
else
echo "${MAJOR}.${MINOR}"
fi
}

NOTION_LATEST_VERSION=$(notion_get_latest_release)
Expand Down

0 comments on commit 62f2476

Please sign in to comment.