Skip to content

Commit 37d584e

Browse files
authored
version 0.9.9 (#302)
[node_publish]
1 parent c1ff2ab commit 37d584e

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cmake_minimum_required(VERSION 3.13)
1313

1414
# Project information
1515
project(omega_edit
16-
VERSION 0.9.8
16+
VERSION 0.9.9
1717
DESCRIPTION "Apache open source library for building editors"
1818
HOMEPAGE_URL "https://github.com/ctc-oss/omega-edit"
1919
LANGUAGES C CXX)

src/rpc/client/ts/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/rpc/client/ts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "omega-edit",
3-
"version": "0.9.8",
3+
"version": "0.9.9",
44
"description": "OmegaEdit gRPC Client TypeScript Types",
55
"publisher": "ctc-oss",
66
"repository": {

src/rpc/client/ts/tests/specs/client.spec.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,10 @@ import { ChangeKind } from '../../src/omega_edit_pb'
5353
import { decode, encode } from 'fastestsmallesttextencoderdecoder'
5454

5555
describe('Version', () => {
56-
it('Should return version v0.9.8', async () => {
56+
const expected_version = 'v0.9.9'
57+
it('Should return version ' + expected_version, async () => {
5758
const result = await getVersion()
58-
expect(result).to.equal('v0.9.8')
59+
expect(result).to.equal(expected_version)
5960
})
6061
})
6162

0 commit comments

Comments
 (0)