Bumping to v0.2.0

Signed-off-by: Matt Farina <matt.farina@suse.com>
This commit is contained in:
Matt Farina
2021-05-13 18:12:13 -04:00
parent 5c51e64e9d
commit 6f2a7ecabd
4 changed files with 9 additions and 5 deletions

8
package-lock.json generated
View File

@@ -1,13 +1,14 @@
{
"name": "rancher-desktop",
"version": "0.1.0",
"version": "0.2.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "rancher-desktop",
"version": "0.1.0",
"version": "0.2.0",
"hasInstallScript": true,
"license": "Apache-2.0",
"dependencies": {
"@kubernetes/client-node": "^0.13.0",
"@popperjs/core": "^2.9.2",
@@ -68,6 +69,9 @@
"vue-jest": "^3.0.7",
"vue-template-compiler": "^2.6.12",
"webpack": "^4.46.0"
},
"engines": {
"node": ">=14.14"
}
},
"node_modules/@babel/code-frame": {

View File

@@ -1,7 +1,7 @@
{
"name": "rancher-desktop",
"license": "Apache-2.0",
"version": "0.1.0",
"version": "0.2.0",
"engines": {
"node": ">=14.14"
},

View File

@@ -124,7 +124,7 @@ export default async function main() {
}
// Download Kim
const kimVersion = '0.1.0-alpha.11';
const kimVersion = '0.1.0-alpha.12';
const kimURL = `https://github.com/rancher/kim/releases/download/v${ kimVersion }/${ exeName(`kim-${ kubePlatform }-amd64`) }`;
const kimPath = path.join(binDir, exeName('kim'));

View File

@@ -67,7 +67,7 @@ describe(K3sHelper, () => {
expect(await subject.availableVersions).toHaveLength(0);
});
it('should ignore old versions', async() => {
expect(process('0.1.0')).toEqual(true);
expect(process('0.2.0')).toEqual(true);
expect(await subject.availableVersions).toHaveLength(0);
});
it('should ignore obsolete builds', async() => {