Skip to content

Commit

Permalink
Bump all versions to 0.5.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
samscott89 committed Sep 9, 2020
1 parent 65fbd09 commit 05fdfe3
Show file tree
Hide file tree
Showing 13 changed files with 23 additions and 23 deletions.
8 changes: 4 additions & 4 deletions 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 VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.1
0.5.2
2 changes: 1 addition & 1 deletion docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export JS_DIR := $(abspath ../languages/js)

rwildcard=$(foreach d,$(wildcard $(1:=/*)),$(call rwildcard,$d,$2) $(filter $(subst *,%,$2),$d))

JAVA_PACKAGE_JAR_PATH := $(JAVA_DIR)/target/oso-0.5.1.jar
JAVA_PACKAGE_JAR_PATH := $(JAVA_DIR)/target/oso-0.5.2.jar

RUBY_FILES := $(call rwildcard,../languages/ruby/lib,*.rb)
JAVA_FILES := $(call rwildcard ../languages/java/oso/src, *.java)
Expand Down
8 changes: 4 additions & 4 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
import lexer
import os
import sys

Expand All @@ -20,7 +21,6 @@

sys.path.insert(0, os.path.abspath(".."))
sys.path.insert(0, os.path.abspath("."))
import lexer


# -- Project information -----------------------------------------------------
Expand All @@ -29,7 +29,7 @@
copyright = "2020 Oso Security, Inc"
author = "oso"
version = "0.5"
release = "0.5.1"
release = "0.5.2"


# -- General configuration ---------------------------------------------------
Expand Down Expand Up @@ -116,7 +116,7 @@ def _skip(self, word):
# The name of the Pygments (syntax highlighting) style to use.
pygments_style = "borland"

### Show/hide TODOs
# Show/hide TODOs

todo_include_todos = False

Expand Down Expand Up @@ -188,7 +188,7 @@ def _skip(self, word):
lexers["oso"] = lexer.OsoLexer()


#### Subsitutions
# Subsitutions

extlinks = {
"gh-oso": ("https://github.com/osohq/oso", None),
Expand Down
2 changes: 1 addition & 1 deletion languages/java/oso/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<groupId>com.osohq</groupId>
<artifactId>oso</artifactId>
<version>0.5.1</version>
<version>0.5.2</version>

<distributionManagement>
<snapshotRepository>
Expand Down
2 changes: 1 addition & 1 deletion languages/js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oso",
"version": "0.5.1",
"version": "0.5.2",
"description": "oso authorization library.",
"main": "dist/src/index.js",
"bin": "bin/repl.js",
Expand Down
2 changes: 1 addition & 1 deletion languages/python/oso/oso/oso.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Core oso functionality"""

__version__ = "0.5.1"
__version__ = "0.5.2"

from pathlib import Path
import os
Expand Down
2 changes: 1 addition & 1 deletion languages/ruby/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
oso-oso (0.5.1)
oso-oso (0.5.2)
ffi (~> 1.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion languages/ruby/lib/oso/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Oso
VERSION = '0.5.1'
VERSION = '0.5.2'
end
2 changes: 1 addition & 1 deletion languages/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oso"
version = "0.6.0-rc0"
version = "0.5.2-alpha"
authors = ["Oso Security, Inc. <[email protected]>"]
edition = "2018"

Expand Down
4 changes: 2 additions & 2 deletions polar-c-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polar-c-api"
version = "0.1.0"
version = "0.5.2"
authors = ["Oso Security, Inc. <[email protected]>"]
edition = "2018"

Expand All @@ -11,7 +11,7 @@ bench = false

[dependencies]
polar-core = { path = "../polar-core" }
serde = { version = "1.0", features = ["derive", "rc"]}
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0"

[build_dependencies]
Expand Down
6 changes: 3 additions & 3 deletions polar-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polar-core"
version = "0.4.1-rc4"
version = "0.5.2"
authors = ["Oso Security, Inc. <[email protected]>"]
edition = "2018"

Expand All @@ -17,11 +17,11 @@ js-sys = "0.3"
lalrpop-util = "0.18.1"
lazy_static = "1.4.0"
regex = "1.3.7"
serde = { version = "1.0", features = ["derive", "rc"]}
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0"

[build_dependencies]
lalrpop = {version = "0.18.1", features = ["lexer"]}
lalrpop = { version = "0.18.1", features = ["lexer"] }

[dev-dependencies]
criterion = "0.3"
Expand Down
4 changes: 2 additions & 2 deletions polar-wasm-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polar-wasm-api"
version = "0.1.0"
version = "0.5.2"
authors = ["Oso Security, Inc. <[email protected]>"]
edition = "2018"

Expand All @@ -12,7 +12,7 @@ bench = false
console_error_panic_hook = "0.1"
js-sys = "0.3"
polar-core = { path = "../polar-core" }
serde = { version = "1.0", features = ["rc"]}
serde = { version = "1.0", features = ["rc"] }
serde_json = "1.0"
serde-wasm-bindgen = "0.1"
wasm-bindgen = "0.2"
Expand Down

0 comments on commit 05fdfe3

Please sign in to comment.