Skip to content

Commit

Permalink
v0.9.68 [node_publish]
Browse files Browse the repository at this point in the history
  • Loading branch information
shanedell committed Jun 15, 2023
1 parent 9e57662 commit 814294d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 10 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ jobs:
branch: main
workflow_conclusion: success
name: libomega_edit.dylib
path: _install/lib/libomega_edit_x86_64.dylib
path: _install/lib/libomega_edit_macos_x86_64.dylib

- name: Download windows library file 🔻
uses: dawidd6/action-download-artifact@v2
Expand All @@ -203,17 +203,16 @@ jobs:

- name: Move out library files 🛻
run: |
for lib_filename in "libomega_edit.so" "libomega_edit.dylib" "omega_edit.dll"; do
for lib_filename in "libomega_edit_linux_amd64.so" "libomega_edit_macos_x86_64.dylib" "omega_edit_windows_64.dll"; do
downloaded_filename=$(echo $lib_filename | sed "s|_linux_amd64||g" | sed "s|_macos_x86_64||g" | sed "s|_windows_64||g")
mv -v "${lib_filename}" "${lib_filename}_dir"
mv -v "${lib_filename}_dir/$lib_filename" "$lib_filename"
mv -v "${lib_filename}_dir/$downloaded_filename" "$lib_filename"
rm -rf "${lib_filename}_dir"
done
working-directory: _install/lib
shell: bash

- name: Download shared lib files for M1 mac 🔻
env:
folder: "omega-edit-native_2.13"
run: |
base_url=https://raw.githubusercontent.com/Shanedell/omega-edit-aarch/main
Expand Down
2 changes: 1 addition & 1 deletion core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ cmake_minimum_required(VERSION 3.13)

# Project information
project(omega_edit
VERSION 0.9.67
VERSION 0.9.68
DESCRIPTION "Apache open source library for building editors"
HOMEPAGE_URL "https://github.com/ctc-oss/omega-edit"
LANGUAGES C CXX)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@omega-edit/core",
"version": "0.9.67",
"version": "0.9.68",
"private": "true",
"description": "OmegaEdit Client and Server",
"publisher": "ctc-oss",
Expand Down
4 changes: 2 additions & 2 deletions packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@omega-edit/client",
"version": "0.9.67",
"version": "0.9.68",
"description": "OmegaEdit gRPC Client TypeScript Types",
"publisher": "ctc-oss",
"main": "out/index.js",
Expand Down Expand Up @@ -41,7 +41,7 @@
},
"dependencies": {
"@grpc/grpc-js": "1.8.15",
"@omega-edit/server": "0.9.67",
"@omega-edit/server": "0.9.68",
"@types/google-protobuf": "3.15.6",
"google-protobuf": "3.21.2",
"pino": "8.14.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@omega-edit/server",
"version": "0.9.67",
"version": "0.9.68",
"description": "OmegaEdit gRPC Server TypeScript functions",
"publisher": "ctc-oss",
"main": "out/index.js",
Expand Down

0 comments on commit 814294d

Please sign in to comment.