Skip to content

Commit

Permalink
chore: bump package for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
xiduzo committed Nov 11, 2024
1 parent e1ae7b3 commit adb93f2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion apps/electron-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"type": "git",
"url": "https://github.com/xiduzo/microflow"
},
"version": "0.5.0",
"version": "0.6.0",
"description": "An application which allows you to create flow-based logic for microcontrollers",
"author": {
"name": "Sander Boer",
Expand Down
2 changes: 1 addition & 1 deletion apps/figma-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@microflow/figma-plugin",
"private": true,
"version": "0.5.0",
"version": "0.6.0",
"scripts": {
"dev": "concurrently \"yarn watch:ui\" \"yarn watch:plugin\"",
"dev:ui-only": "vite -c ./vite.config.ui.ts",
Expand Down
14 changes: 7 additions & 7 deletions apps/nextjs-app/components/DownloadApp.tsx
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
'use client';

import {
Button,
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
Button,
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from '@microflow/ui';
import { useState } from 'react';

export function DownloadApp() {
const [os, setOs] = useState('');

function downloadApp() {
const version = '0.5.0';
const version = '0.6.0';
const baseUrl = `https://github.com/xiduzo/microflow/releases/download/v${version}`;

switch (os) {
Expand Down
2 changes: 1 addition & 1 deletion apps/nextjs-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nextjs-app",
"version": "0.5.0",
"version": "0.6.0",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down

0 comments on commit adb93f2

Please sign in to comment.