Skip to content

Commit

Permalink
feat: bump version to 0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mrinalwadhwa committed Nov 11, 2020
1 parent d808e46 commit 81de0bc
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion implementations/c/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ cmake_minimum_required(VERSION 3.1...3.18 FATAL_ERROR)
# can find both compilers. We don't use the C++ compiler, so by sepecifying
# only C here we tell CMake to test only for a presence of the C compiler.
# This way the build environment isn't required to have a CXX compiler.
project(ockam VERSION 0.10.0 LANGUAGES C)
project(ockam VERSION 0.10.1 LANGUAGES C)

# If this is the top level CMake project.
if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME)
Expand Down
2 changes: 1 addition & 1 deletion implementations/elixir/ockam/ockam/mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Ockam.MixProject do
use Mix.Project

@version "0.10.0"
@version "0.10.1"

@elixir_requirement "~> 1.10"

Expand Down
2 changes: 1 addition & 1 deletion implementations/elixir/ockam/ockam_hub/mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Ockam.Hub.MixProject do
use Mix.Project

@version "0.10.0"
@version "0.10.1"

@elixir_requirement "~> 1.10"

Expand Down
2 changes: 1 addition & 1 deletion implementations/elixir/ockam/ockam_node_web/mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Ockam.Node.Web.MixProject do
use Mix.Project

@version "0.10.0"
@version "0.10.1"

@elixir_requirement "~> 1.10"

Expand Down
2 changes: 1 addition & 1 deletion implementations/elixir/ockam/ockam_vault_software/mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Ockam.Vault.Software.MixProject do
use Mix.Project

@version "0.10.0"
@version "0.10.1"

@elixir_requirement "~> 1.10"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.1...3.18 FATAL_ERROR)

project(ockam_elixir VERSION 0.10.0 LANGUAGES C)
project(ockam_elixir VERSION 0.10.1 LANGUAGES C)

add_subdirectory(vault)

0 comments on commit 81de0bc

Please sign in to comment.