Skip to content

Commit

Permalink
chore: update version to v0.7.15 in Makefile, package.json, and insta…
Browse files Browse the repository at this point in the history
…ll.js

This commit updates the version to v0.7.15 in three files: Makefile, package.json, and install.js. The binaries generated from this version will include bug fixes and improvements.
  • Loading branch information
AleksandarFaraj committed May 16, 2023
1 parent 3dae5d0 commit 7e77ef8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions cli/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

BINARY_NAME=tzap
PREVIOUS_VERSION=v0.7.13
VERSION=v0.7.14
PREVIOUS_VERSION=v0.7.14
VERSION=v0.7.15
#VERSION=$(shell git describe --tags --always)
BUILD_FLAGS=-ldflags="-X main.Version=$(VERSION)"

Expand Down
2 changes: 1 addition & 1 deletion npm/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if (arch === 'x64') {
}

let binaryName;
const version = "v0.7.14"
const version = "v0.7.15"
if (platform === 'win32') {
binaryName = `tzap-${version}-windows-${arch}.exe`;
} else if (platform === 'darwin') {
Expand Down
2 changes: 1 addition & 1 deletion npm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tzap",
"version": "0.7.14",
"version": "0.7.15",
"description": "Tzap is a library designed to run GPT prompts in the terminal and seamlessly integrate GPT prompts into your code. ",
"bin": { "tzap": "./run.js" },
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion npm/run.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if (arch === 'x64') {
}

let binaryName;
const version = "v0.7.14"
const version = "v0.7.15"
if (platform === 'win32') {
binaryName = `tzap-${version}-windows-${arch}.exe`;
} else if (platform === 'darwin') {
Expand Down

0 comments on commit 7e77ef8

Please sign in to comment.