Skip to content

Commit

Permalink
fix(typo): Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentdchan committed Nov 28, 2020
1 parent 794f968 commit 4530f1e
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -6,7 +6,7 @@
[![npm version](https://img.shields.io/npm/v/polodb.svg)](https://www.npmjs.com/package/polodb)
[![PYPI version](https://img.shields.io/pypi/v/polodb.svg)](https://pypi.org/project/polodb/)

PoloDB is a embedded JSON-based database.
PoloDB is an embedded JSON-based database.

[中文版](README_CN.md)

Expand Down
7 changes: 4 additions & 3 deletions polodb.js/package.json
@@ -1,7 +1,7 @@
{
"name": "polodb",
"version": "0.4.0",
"description": "",
"version": "0.4.2",
"description": "PoloDB is an embedded JSON-based database.",
"main": "index.js",
"engines": {
"node": ">= 0.12"
Expand All @@ -16,7 +16,8 @@
"url": "git+https://github.com/vincentdchan/PoloDB.git"
},
"keywords": [
"database"
"database",
"embedded"
],
"author": "Vincent Chan",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion polodb.js/scripts/download-lib.js
Expand Up @@ -5,7 +5,7 @@ const path = require('path');
const os = require('os');
const crypto = require('crypto');

const version = '0.3.1';
const version = '0.4.2';

const platform = os.platform();
const arch = os.arch();
Expand Down
4 changes: 2 additions & 2 deletions pypolodb/setup.py
Expand Up @@ -8,7 +8,7 @@

user_agent = 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.7) Gecko/2009021910 Firefox/3.0.7'
BUF_SIZE = 65536
LIB_VERSION = '0.3.1'
LIB_VERSION = '0.4.2'

def get_platform_name():
if os.name == 'nt':
Expand Down Expand Up @@ -99,7 +99,7 @@ def download_lib():
long_description = ''

setup (name = 'polodb',
version = '0.3.10',
version = '0.4.2',
description = 'PoloDB for Python',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion src/polodb_clib/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "polodb_clib"
version = "0.4.0"
version = "0.4.2"
authors = ["Vincent Chan <okcdz@diverse.space>"]
edition = "2018"

Expand Down
5 changes: 3 additions & 2 deletions src/polodb_core/Cargo.toml
@@ -1,11 +1,12 @@
[package]
name = "polodb_core"
version = "0.4.0"
version = "0.4.2"
authors = ["Vincent Chan <okcdz@diverse.space>"]
license = "MIT"
edition = "2018"
repository = "https://github.com/vincentdchan/PoloDB"
description = "PoloDB is a embedded JSON-based database"
description = "PoloDB is an embedded JSON-based database"
keywords = ["database", "embedded", "cross-platform"]

[lib]
name="polodb_core"
Expand Down

0 comments on commit 4530f1e

Please sign in to comment.