Skip to content

Commit

Permalink
v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
taehyounpark committed Apr 10, 2024
1 parent c86033b commit d9d1dd5
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ option(QUERYOSITY_EXAMPLES "Examples" OFF)

set(QUERYOSITY_INCLUDE_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/include)
set(QUERYOSITY_MAJOR_VERSION 0)
set(QUERYOSITY_MINOR_VERSION 4)
set(QUERYOSITY_PATCH_VERSION 1)
set(QUERYOSITY_MINOR_VERSION 5)
set(QUERYOSITY_PATCH_VERSION 0)
set(QUERYOSITY_VERSION
${QUERYOSITY_MAJOR_VERSION}.${QUERYOSITY_MINOR_VERSION}.${QUERYOSITY_PATCH_VERSION}
)
Expand Down
15 changes: 7 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,23 @@
# Queryosity

![Version](https://img.shields.io/badge/Version-0.4.1-blue.svg)
![Version](https://img.shields.io/badge/Version-0.5.0-blue.svg)
![C++ Standard](https://img.shields.io/badge/C++-17-blue.svg)
[![Ubuntu](https://github.com/taehyounpark/analogical/actions/workflows/ubuntu.yml/badge.svg?branch=master)](https://github.com/taehyounpark/analogical/actions/workflows/ubuntu.yml)
[![macOS](https://github.com/taehyounpark/analogical/actions/workflows/macos.yml/badge.svg?branch=master)](https://github.com/taehyounpark/analogical/actions/workflows/macos.yml)
[![MIT License](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

`queryosity` is a row-wise analysis description language for (semi-)structured data.

<p align="center">
<strong> <a href="https://queryosity.readthedocs.io/">Documentation</a></strong>
</p>

## Features
Queryosity is a row-wise analysis description language for (semi-)structured data.

- Dataflow interface.
- Arbitrary data types.
- Lazy, multithreaded actions.
- Sensitivity analysis.

<p align="center">
<strong> <a href="https://queryosity.readthedocs.io/">Documentation</a></strong>
</p>

## Hello World
```cpp
#include <fstream>
Expand Down Expand Up @@ -85,7 +84,7 @@ cmake --build .
cmake --install .
```
```cmake
find_package(queryosity 0.4.1 REQUIRED)
find_package(queryosity 0.5.0 REQUIRED)
...
add_library(Analysis ...)
...
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Welcome to Queryosity

![Version](https://img.shields.io/badge/Version-0.4.1-blue.svg)
![Version](https://img.shields.io/badge/Version-0.5.0-blue.svg)
![C++ Standard](https://img.shields.io/badge/C++-17-blue.svg)
[![Ubuntu](https://github.com/taehyounpark/analogical/actions/workflows/ubuntu.yml/badge.svg?branch=master)](https://github.com/taehyounpark/analogical/actions/workflows/ubuntu.yml)
[![macOS](https://github.com/taehyounpark/analogical/actions/workflows/macos.yml/badge.svg?branch=master)](https://github.com/taehyounpark/analogical/actions/workflows/macos.yml)
Expand Down
2 changes: 1 addition & 1 deletion docs/start/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ cmake --install .
```

```cmake
find_package(queryosity 0.4.1 REQUIRED)
find_package(queryosity 0.5.0 REQUIRED)
...
add_library(MyAnalysis ...)
...
Expand Down

0 comments on commit d9d1dd5

Please sign in to comment.