Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
waruqi committed Feb 23, 2020
1 parent a32edab commit f6155f8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## master (unreleased)

## v2.3.1

### New features

* [#675](https://github.com/xmake-io/xmake/issues/675): Support to compile `*.c` as c++, `add_files("*.c", {sourcekind = "cxx"})`.
Expand Down Expand Up @@ -679,6 +681,8 @@

## master (开发中)

## v2.3.1

### 新特性

* [#675](https://github.com/xmake-io/xmake/issues/675): 支持通过设置强制将`*.c`作为c++代码编译, `add_files("*.c", {sourcekind = "cxx"})`
Expand Down
4 changes: 2 additions & 2 deletions core/project.mak
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ PRO_NAME = xmake
PRO_VERSION_MAJOR = 2

# the project minor version
PRO_VERSION_MINOR = 2
PRO_VERSION_MINOR = 3

# the project alter version
PRO_VERSION_ALTER = 9
PRO_VERSION_ALTER = 1

# the project prefix
PRO_PREFIX = XM_
Expand Down
2 changes: 1 addition & 1 deletion core/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set_project("xmake")

-- version
set_version("2.2.9", {build = "%Y%m%d%H%M"})
set_version("2.3.1", {build = "%Y%m%d%H%M"})

-- set xmake min version
set_xmakever("2.2.3")
Expand Down

0 comments on commit f6155f8

Please sign in to comment.