From 120e9c04ab8eedadd08245be679c7daf8a1ddd33 Mon Sep 17 00:00:00 2001 From: steve olsen Date: Fri, 31 Jul 2020 13:19:22 -0500 Subject: [PATCH] 0.3.1 --- docs/Makefile | 2 +- docs/conf.py | 2 +- languages/java/oso/pom.xml | 2 +- languages/python/oso/oso.py | 2 +- languages/ruby/Gemfile.lock | 2 +- languages/ruby/lib/oso/version.rb | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/Makefile b/docs/Makefile index aad874fd87..bc4cca3c21 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -15,7 +15,7 @@ export JAVA_DIR := $(abspath ../languages/java/oso) rwildcard=$(foreach d,$(wildcard $(1:=/*)),$(call rwildcard,$d,$2) $(filter $(subst *,%,$2),$d)) -JAVA_PACKAGE_JAR_PATH := $(JAVA_DIR)/target/oso-0.3.0.jar +JAVA_PACKAGE_JAR_PATH := $(JAVA_DIR)/target/oso-0.3.1.jar RUBY_FILES := $(call rwildcard,../languages/ruby/lib,*.rb) JAVA_FILES := $(call rwildcard ../languages/java/oso/src, *.java) diff --git a/docs/conf.py b/docs/conf.py index 2460ef8ce0..cc51393d1a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -29,7 +29,7 @@ copyright = "2020 Oso Security, Inc" author = "oso" version = "0.3" -release = "0.3.0" +release = "0.3.1" # -- General configuration --------------------------------------------------- diff --git a/languages/java/oso/pom.xml b/languages/java/oso/pom.xml index f9d168afa3..ae49f6611f 100644 --- a/languages/java/oso/pom.xml +++ b/languages/java/oso/pom.xml @@ -6,7 +6,7 @@ com.osohq.oso oso - 0.3.0 + 0.3.1 diff --git a/languages/python/oso/oso.py b/languages/python/oso/oso.py index 0fc298aeca..17b4b40a1c 100644 --- a/languages/python/oso/oso.py +++ b/languages/python/oso/oso.py @@ -1,6 +1,6 @@ """Core oso functionality""" -__version__ = "0.3.0" +__version__ = "0.3.1" from pathlib import Path import os diff --git a/languages/ruby/Gemfile.lock b/languages/ruby/Gemfile.lock index 06629b6bff..8deacdcf60 100644 --- a/languages/ruby/Gemfile.lock +++ b/languages/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - oso-oso (0.3.0) + oso-oso (0.3.1) ffi (~> 1.0) GEM diff --git a/languages/ruby/lib/oso/version.rb b/languages/ruby/lib/oso/version.rb index 75d6e26b32..01fb38b0fc 100644 --- a/languages/ruby/lib/oso/version.rb +++ b/languages/ruby/lib/oso/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Oso - VERSION = '0.3.0' + VERSION = '0.3.1' end