Skip to content

Commit

Permalink
release/4.0.0 develop (#98)
Browse files Browse the repository at this point in the history
* chore: 4.0.0 update version from docs and app

* chore: 4.0.0 release v4.0.0
  • Loading branch information
Isaac Martinez authored Aug 7, 2023
1 parent b77ee66 commit 0bb3023
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 8 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## [4.0.0](https://github.com/minnek-digital-studio/cominnek/compare/v3.1.0...4.0.0) (2023-08-07)

### Features
- feat: 90 add support to read project PR template ([53a43f4](https://github.com/minnek-digital-studio/cominnek/commit/53a43f4))
- feat: add mnk-config.json to project ([55d9b13](https://github.com/minnek-digital-studio/cominnek/commit/55d9b13))
- feat: add support to use flow package ([cb44a26](https://github.com/minnek-digital-studio/cominnek/commit/cb44a26))
- feat: add support to download package ([8e91b49](https://github.com/minnek-digital-studio/cominnek/commit/8e91b49))
- feat: 90 create support to custom flow ([1794664](https://github.com/minnek-digital-studio/cominnek/commit/1794664))
- **branch:** 84 add sync branch ([50b3ebe](https://github.com/minnek-digital-studio/cominnek/commit/50b3ebe))

### Bug Fixes
- **publish:** 83 skip commit flag ([81d5fe5](https://github.com/minnek-digital-studio/cominnek/commit/81d5fe5))

# [3.1.0] - 2023-04-30

## Added
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ Create commits & pull requests easily. `Cominnek` is based on [TAYO](https://mn

1. Download installer

[![Macos](https://img.shields.io/badge/mac%20os-0078D6?style=for-the-badge&logo=apple&logoColor=white)](https://github.com/Minnek-Digital-Studio/cominnek/releases/latest/download/cominnek-3.1.0.dmg) [![Windows](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge&logo=windows&logoColor=white
)](https://github.com/Minnek-Digital-Studio/cominnek/releases/latest/download/cominnek-3.1.0.exe) [![Linux](https://img.shields.io/badge/Linux-0078D6?style=for-the-badge&logo=linux&logoColor=white)](https://github.com/Minnek-Digital-Studio/cominnek/releases/latest/download/cominnek-3.1.0.deb)
[![Macos](https://img.shields.io/badge/mac%20os-0078D6?style=for-the-badge&logo=apple&logoColor=white)](https://github.com/Minnek-Digital-Studio/cominnek/releases/latest/download/cominnek-4.0.0.dmg) [![Windows](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge&logo=windows&logoColor=white
)](https://github.com/Minnek-Digital-Studio/cominnek/releases/latest/download/cominnek-4.0.0.exe) [![Linux](https://img.shields.io/badge/Linux-0078D6?style=for-the-badge&logo=linux&logoColor=white)](https://github.com/Minnek-Digital-Studio/cominnek/releases/latest/download/cominnek-4.0.0.deb)

2. Run installer ([See MAC Os steps](#how-to-install-on-mac))

Expand Down Expand Up @@ -417,7 +417,7 @@ $ cominnek push -m "Changes in home page" -F "home"
If you want to contribute to this project, please read the [contributing guide](/CONTRIBUTING.md)
Cominnek `V3.1.0`
Cominnek `V4.0.0`
> With ❤ by [isaacismaelx14](https://github.com/isaacismaelx14)
## About
Expand Down
2 changes: 1 addition & 1 deletion assets/windows/bin/setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
#include "environment.iss"
#define MyAppName "Cominnek"
#define MyAppVersion "3.1.0"
#define MyAppVersion "4.0.0"
#define MyAppPublisher "Minnek Digital Studio"
#define MyAppURL "https://github.com/Minnek-Digital-Studio/cominnek"
#define MyAppExeName "cominnek.exe"
Expand Down
2 changes: 1 addition & 1 deletion config/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ var cominnekPath = filepath.Join(userPath, ".cominnek")
var cominnekTempPath = filepath.Join(tempPath, ".cominnek")

var Public = IConfig{
Version: "v4.0.0-beta.1",
Version: "v4.0.0",
KeyPath: filepath.Join(cominnekPath, "key.bin"),
TokenPath: filepath.Join(cominnekPath, "auth.bin"),
PRBody: filepath.Join(cominnekPath, "pr-body.md"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const Download = component$(() => {
</Title>
<Button.Group variant="inline" class={Styles.buttons}>
<Button
href="https://github.com/Minnek-Digital-Studio/cominnek/releases/latest/download/cominnek-3.1.0.dmg"
href="https://github.com/Minnek-Digital-Studio/cominnek/releases/latest/download/cominnek-4.0.0.dmg"
_target="_blank"
variant="dark"
class={Styles.button}
Expand All @@ -22,7 +22,7 @@ export const Download = component$(() => {
<i class={["fa-brands fa-apple", Styles.icon]}></i>
</Button>
<Button
href="https://github.com/Minnek-Digital-Studio/cominnek/releases/latest/download/cominnek-3.1.0.exe"
href="https://github.com/Minnek-Digital-Studio/cominnek/releases/latest/download/cominnek-4.0.0.exe"
_target="_blank"
variant="dark"
class={Styles.button}
Expand All @@ -31,7 +31,7 @@ export const Download = component$(() => {
<i class={["fa-brands fa-windows", Styles.icon]}></i>
</Button>
<Button
href="https://github.com/Minnek-Digital-Studio/cominnek/releases/latest/download/cominnek-3.1.0.deb"
href="https://github.com/Minnek-Digital-Studio/cominnek/releases/latest/download/cominnek-4.0.0.deb"
_target="_blank"
variant="dark"
class={Styles.button}
Expand Down

0 comments on commit 0bb3023

Please sign in to comment.