Skip to content

Commit

Permalink
prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
mredolatti committed Feb 22, 2024
1 parent 1ffbd68 commit 836985a
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 8 deletions.
4 changes: 4 additions & 0 deletions release/dp_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@
'latest_linux': 'install_split_sync_linux.bin',
'latest_osx': 'install_split_sync_osx.bin',
'latest_windows': 'split_sync_windows.zip',
'latest_linux_fips': 'install_split_sync_linux_fips.bin',
'latest_windows_fips': 'split_sync_windows_fips.zip',
}

_PROXY_PRE_VARS = {
Expand All @@ -70,6 +72,8 @@
'latest_linux': 'install_split_proxy_linux.bin',
'latest_osx': 'install_split_proxy_osx.bin',
'latest_windows': 'split_proxy_windows.zip',
'latest_linux_fips': 'install_split_proxy_linux_fips.bin',
'latest_windows_fips': 'split_proxy_windows_fips.zip',
}

def make_row_vars_pre_multiexec(version: str) -> Dict[str,str]:
Expand Down
31 changes: 25 additions & 6 deletions release/versions.pre.html.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,33 @@
<div class="jumbotron">
<h1>{title}</h1>
<p class="lead">{description}</p>
<p>
<a class="btn btn-primary" href="./{latest_osx}" role="button"><i class="fab fa-apple"></i>&nbsp;Download</a>
<a class="btn btn-primary" href="./{latest_linux}" role="button"><i class="fab fa-linux"></i>&nbsp;Download</a>
<a class="btn btn-primary" href="./{latest_windows}" role="button"><i class="fab fa-windows"></i>&nbsp;Download</a>
<a class="btn btn-primary" href="{dockerhub_url}" role="button"><i class="fab fa-docker"></i>&nbsp;Docker Hub</a>
</p>
</div>

<table class=table>
<thead>
<tr>
<td colspan="1">Build/OS</td>
<td colspan="1">OSX</td>
<td colspan="1">GNU/Linux</td>
<td colspan="1">Windows</td>
</tr>
<thead>
<tr>
<td>Standard</td>
<td><a class="btn btn-primary" href="./{latest_osx}" role="button"><i class="fab fa-apple"></i>&nbsp;Download</a></td>
<td><a class="btn btn-primary" href="./{latest_linux}" role="button"><i class="fab fa-linux"></i>&nbsp;Download</a></td>
<td><a class="btn btn-primary" href="./{latest_windows}" role="button"><i class="fab fa-windows"></i>&nbsp;Download</a></td>
</tr>
<tr>
<td>FIPS-Compliant</td>
<td>-</td>
<td><a class="btn btn-primary" href="./{latest_linux_fips}" role="button"><i class="fab fa-linux"></i>&nbsp;Download</a></td>
<td><a class="btn btn-primary" href="./{latest_windows_fips}" role="button"><i class="fab fa-windows"></i>&nbsp;Download</a></td>
</tr>
</table>



<h2>Older versions</h2>
<table class="table">
<thead>
Expand Down
2 changes: 1 addition & 1 deletion splitio/commitversion.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ This file is created automatically, please do not edit
*/

// CommitVersion is the version of the last commit previous to release
const CommitVersion = "e96f5c1"
const CommitVersion = "1ffbd68"
2 changes: 1 addition & 1 deletion splitio/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
package splitio

// Version is the version of this Agent
const Version = "5.7.0-rc1"
const Version = "5.7.0"

0 comments on commit 836985a

Please sign in to comment.