From bad9675b6841876c5776fd573c5eaa2d1500be91 Mon Sep 17 00:00:00 2001 From: Clivern Date: Tue, 25 Oct 2022 13:20:25 +0200 Subject: [PATCH] feat: bump and close #70 --- README.md | 6 +++--- api.yml | 2 +- docker-compose-cluster.yml | 6 +++--- docker-compose-nginx.yml | 2 +- docker-compose.yml | 2 +- docs/index.md | 4 ++-- lib/lynx_web/router.ex | 2 +- mix.exs | 2 +- 8 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 155291c..3ba948f 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

- Lynx Logo + Lynx Logo

Lynx

A Fast, Secure and Reliable Terraform Backend, Set up in Minutes.

@@ -7,10 +7,10 @@ - + - + diff --git a/api.yml b/api.yml index 424672b..31da60a 100644 --- a/api.yml +++ b/api.yml @@ -7,7 +7,7 @@ info: license: name: MIT License url: https://github.com/Clivern/Lynx/blob/main/LICENSE - version: 0.12.2 + version: 0.12.3 externalDocs: description: Find out more about lynx url: https://github.com/Clivern/Lynx diff --git a/docker-compose-cluster.yml b/docker-compose-cluster.yml index a0ca704..b014724 100644 --- a/docker-compose-cluster.yml +++ b/docker-compose-cluster.yml @@ -2,7 +2,7 @@ version: '3.8' services: app1: - image: clivern/lynx:0.12.2 + image: clivern/lynx:0.12.3 environment: APP_NAME: Lynx APP_PORT: 4001 @@ -27,7 +27,7 @@ services: - db app2: - image: clivern/lynx:0.12.2 + image: clivern/lynx:0.12.3 environment: APP_NAME: Lynx APP_PORT: 4002 @@ -52,7 +52,7 @@ services: - db app3: - image: clivern/lynx:0.12.2 + image: clivern/lynx:0.12.3 environment: APP_NAME: Lynx APP_PORT: 4003 diff --git a/docker-compose-nginx.yml b/docker-compose-nginx.yml index 85c8079..c5eb131 100644 --- a/docker-compose-nginx.yml +++ b/docker-compose-nginx.yml @@ -2,7 +2,7 @@ version: '3.8' services: app: - image: clivern/lynx:0.12.2 + image: clivern/lynx:0.12.3 environment: APP_NAME: Lynx APP_PORT: 4000 diff --git a/docker-compose.yml b/docker-compose.yml index 851e78e..3dae983 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: '3.8' services: app: - image: clivern/lynx:0.12.2 + image: clivern/lynx:0.12.3 environment: APP_NAME: Lynx APP_PORT: 4000 diff --git a/docs/index.md b/docs/index.md index 5c0ee42..cb70635 100644 --- a/docs/index.md +++ b/docs/index.md @@ -21,8 +21,8 @@ hero: icon: edit download_link: - label: Latest Release v0.12.2 - url: https://github.com/Clivern/Lynx/releases/tag/0.12.2 + label: Latest Release v0.12.3 + url: https://github.com/Clivern/Lynx/releases/tag/0.12.3 features: rows: diff --git a/lib/lynx_web/router.ex b/lib/lynx_web/router.ex index 0656870..80d77c3 100644 --- a/lib/lynx_web/router.ex +++ b/lib/lynx_web/router.ex @@ -133,7 +133,7 @@ defmodule LynxWeb.Router do defp add_server_header(conn, _opts) do conn - |> put_resp_header("x-server-version", "lynx/0.12.2") + |> put_resp_header("x-server-version", "lynx/0.12.3") end # Enables LiveDashboard only for development diff --git a/mix.exs b/mix.exs index f1fb83e..c6b055d 100644 --- a/mix.exs +++ b/mix.exs @@ -5,7 +5,7 @@ defmodule Lynx.MixProject do use Mix.Project - @version "0.12.2" + @version "0.12.3" def get_version, do: @version