Skip to content

Commit

Permalink
bump: rc149
Browse files Browse the repository at this point in the history
  • Loading branch information
truemiller committed Sep 29, 2024
1 parent eda92e1 commit c5c76a2
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
1 change: 1 addition & 0 deletions electron/components/PearlOTA.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ class PearlOTA {
this.updater.autoDownload = false;
this.updater.autoInstallOnAppQuit = false;
this.updater.logger = logger;
// this.updater.forceDevUpdateConfig = true;
this.#bindUpdaterEvents();
}

Expand Down
7 changes: 4 additions & 3 deletions electron/constants/config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const { isDev } = require('../constants');
const { isProd } = require('../constants');

require('dotenv').config();

Expand All @@ -14,6 +14,7 @@ require('dotenv').config();
* channel: string,
* vPrefixedTagName: boolean,
* protocol: "https" | "http",
* token?: string
* }} PearlGithubUpdateOptions
*
*/
Expand All @@ -30,11 +31,11 @@ const githubUpdateOptions = {
owner: 'valory-xyz',
repo: 'olas-operate-app',
private: false, // Only set to true if the repo is private
publishAutoUpdate: !isDev, // Publishes the update to GitHub
publishAutoUpdate: isProd, // Publishes the update to GitHub
channel: 'latest', // The release channel to check for updates, e.g. 'latest', 'beta', 'alpha'
vPrefixedTagName: true,
protocol: 'https',
// token: isDev ? process.env.GH_TEST_PAT ?? null : null, // Personal Access Token (PAT) for GitHub when testing
// token: process.env.GH_TEST_PAT, // Personal Access Token (PAT) for GitHub when testing
};

/**
Expand Down
2 changes: 1 addition & 1 deletion electron/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const schema = {
* @note All versions prior will be migrated to the latest version.
* @type {Record<string, (store: Store<{[key: string]: unknown}>) => void>} */
const migrations = {
'0.1.0-rc146': (store) => {
'0.1.0-rc149': (store) => {
// Environment name and current staking program are unused
// can revisit environment name if we need to support multiple environments
if (store.has('environmentName')) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,5 @@
"download-binaries": "sh download_binaries.sh",
"build:pearl": "sh build_pearl.sh"
},
"version": "0.1.0-rc146"
"version": "0.1.0-rc149"
}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "olas-operate-middleware"
version = "0.1.0-rc146"
version = "0.1.0-rc149"
description = ""
authors = ["David Vilela <[email protected]>", "Viraj Patel <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit c5c76a2

Please sign in to comment.