Skip to content

Commit f77c8d5

Browse files
committed
version
1 parent d70c190 commit f77c8d5

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.14) # This is a guess
2-
project(DrJson VERSION 3.1.0)
2+
project(DrJson VERSION 3.2.0)
33

44
set(CMAKE_C_STANDARD 11)
55
set(CMAKE_C_STANDARD_REQUIRED True)

DrJson/drjson.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#define DRJSON_VERSION_MAJOR 3
1111
#define DRJSON_VERSION_MINOR 1
1212
#define DRJSON_VERSION_MICRO 0
13-
#define DRJSON_VERSION "3.1.0"
13+
#define DRJSON_VERSION "3.2.0"
1414

1515
#ifndef drj_memcpy
1616
#if !defined(__GNUC__) || defined(__IMPORTC__)

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Fuzz: ; mkdir $@
44
DEBUG=-g
55
OPT=-O3
66

7-
DRJSONVERSION=3.1.0
7+
DRJSONVERSION=3.2.0
88

99
DEPFILES:= $(wildcard Deps/*.dep)
1010
include $(DEPFILES)

meson.build

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
project('DrJson', 'c', version: '3.1.0')
2-
COMPAT_VERSION='3.1.0' # for macos dylib
1+
project('DrJson', 'c', version: '3.2.0')
2+
COMPAT_VERSION='3.0.0' # for macos dylib
33

44
if host_machine.system() == 'windows'
55
ignore_bogus_deprecations = ['-D_CRT_NONSTDC_NO_WARNINGS', '-D_CRT_SECURE_NO_WARNINGS']

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def initialize(self):
2525

2626
setup(
2727
name='drjson',
28-
version='3.1.0',
28+
version='3.2.0',
2929
license='Proprietary',
3030
description='fast json parsing',
3131
long_description=LONG_DESCRIPTION,

0 commit comments

Comments
 (0)