Skip to content

Commit 60f4512

Browse files
committed
fix type & bump
1 parent 6d73238 commit 60f4512

9 files changed

+15
-15
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
<p align="center">
2-
<img alt="Lynx Logo" src="/assets/img/logo.png?v=0.12.6" width="400" />
2+
<img alt="Lynx Logo" src="/assets/img/logo.png?v=0.12.7" width="400" />
33
<h3 align="center">Lynx</h3>
44
<p align="center">A Fast, Secure and Reliable Terraform Backend, Set up in Minutes.</p>
55
<p align="center">
66
<a href="https://github.com/Clivern/Lynx/actions/workflows/ci.yml">
77
<img src="https://github.com/Clivern/Lynx/actions/workflows/server_ci.yml/badge.svg"/>
88
</a>
99
<a href="https://github.com/Clivern/Lynx/releases">
10-
<img src="https://img.shields.io/badge/Version-0.12.6-1abc9c.svg">
10+
<img src="https://img.shields.io/badge/Version-0.12.7-1abc9c.svg">
1111
</a>
1212
<a href="https://hub.docker.com/r/clivern/lynx/tags">
13-
<img src="https://img.shields.io/badge/Docker-0.12.6-1abc9c.svg">
13+
<img src="https://img.shields.io/badge/Docker-0.12.7-1abc9c.svg">
1414
</a>
1515
<a href="https://github.com/Clivern/terraform-provider-lynx">
1616
<img src="https://img.shields.io/badge/Terraform-Provider-yellow.svg">

api.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ info:
77
license:
88
name: MIT License
99
url: https://github.com/Clivern/Lynx/blob/main/LICENSE
10-
version: 0.12.6
10+
version: 0.12.7
1111
externalDocs:
1212
description: Find out more about lynx
1313
url: https://github.com/Clivern/Lynx

docker-compose-cluster.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3.8'
22

33
services:
44
app1:
5-
image: clivern/lynx:0.12.6
5+
image: clivern/lynx:0.12.7
66
environment:
77
APP_NAME: Lynx
88
APP_PORT: 4001
@@ -27,7 +27,7 @@ services:
2727
- db
2828

2929
app2:
30-
image: clivern/lynx:0.12.6
30+
image: clivern/lynx:0.12.7
3131
environment:
3232
APP_NAME: Lynx
3333
APP_PORT: 4002
@@ -52,7 +52,7 @@ services:
5252
- db
5353

5454
app3:
55-
image: clivern/lynx:0.12.6
55+
image: clivern/lynx:0.12.7
5656
environment:
5757
APP_NAME: Lynx
5858
APP_PORT: 4003

docker-compose-nginx.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3.8'
22

33
services:
44
app:
5-
image: clivern/lynx:0.12.6
5+
image: clivern/lynx:0.12.7
66
environment:
77
APP_NAME: Lynx
88
APP_PORT: 4000

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3.8'
22

33
services:
44
app:
5-
image: clivern/lynx:0.12.6
5+
image: clivern/lynx:0.12.7
66
environment:
77
APP_NAME: Lynx
88
APP_PORT: 4000

docs/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ hero:
2121
icon: edit
2222

2323
download_link:
24-
label: Latest Release v0.12.6
25-
url: https://github.com/Clivern/Lynx/releases/tag/0.12.6
24+
label: Latest Release v0.12.7
25+
url: https://github.com/Clivern/Lynx/releases/tag/0.12.7
2626

2727
features:
2828
rows:

lib/lynx_web/router.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ defmodule LynxWeb.Router do
133133

134134
defp add_server_header(conn, _opts) do
135135
conn
136-
|> put_resp_header("x-server-version", "lynx/0.12.6")
136+
|> put_resp_header("x-server-version", "lynx/0.12.7")
137137
end
138138

139139
# Enables LiveDashboard only for development

lib/lynx_web/templates/page/snapshots.html.heex

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
<div class="rounded border hp-border-color-black-40 hp-bg-black-0 hp-bg-dark-100 hp-border-color-dark-80 p-24">
8585
<span class="d-block h5 hp-text-color-black-100 hp-text-color-dark-0 mb-6"><%= gettext "Profile Settings" %></span>
8686

87-
<a href={Routes.page_path(@conn, :profile)} class="hp-p1-body hp-text-color-primary-1 hp-text-color-dark-primary-2 hp-hover-text-color-primary-2"><%= gettext "Snapshots" %></a>
87+
<a href={Routes.page_path(@conn, :profile)} class="hp-p1-body hp-text-color-primary-1 hp-text-color-dark-primary-2 hp-hover-text-color-primary-2"><%= gettext "Profile" %></a>
8888

8989
<div class="divider my-12"></div>
9090

@@ -246,7 +246,7 @@
246246
<a href="javascript:;"><%= gettext "Dashboard" %></a>
247247
</li>
248248
<li class="breadcrumb-item active">
249-
<%= gettext "Projects" %>
249+
<%= gettext "Snapshots" %>
250250
</li>
251251
</ol>
252252
</nav>

mix.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
defmodule Lynx.MixProject do
66
use Mix.Project
77

8-
@version "0.12.6"
8+
@version "0.12.7"
99

1010
def get_version, do: @version
1111

0 commit comments

Comments
 (0)