From d9d1dd5cd64a20f78a9709c2ae5204ecd81291f8 Mon Sep 17 00:00:00 2001 From: taehyounpark Date: Wed, 10 Apr 2024 01:21:35 -0400 Subject: [PATCH] v0.5.0 --- CMakeLists.txt | 4 ++-- README.md | 15 +++++++-------- docs/index.md | 2 +- docs/start/install.md | 2 +- 4 files changed, 11 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index dfc4f4b..154e3a2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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} ) diff --git a/README.md b/README.md index 7d2b82f..249b4a7 100644 --- a/README.md +++ b/README.md @@ -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. -

- Documentation -

- -## Features +Queryosity is a row-wise analysis description language for (semi-)structured data. - Dataflow interface. - Arbitrary data types. - Lazy, multithreaded actions. - Sensitivity analysis. +

+ Documentation +

+ ## Hello World ```cpp #include @@ -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 ...) ... diff --git a/docs/index.md b/docs/index.md index f38b0ab..3e71a15 100644 --- a/docs/index.md +++ b/docs/index.md @@ -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) diff --git a/docs/start/install.md b/docs/start/install.md index 6262f8d..074a6f1 100644 --- a/docs/start/install.md +++ b/docs/start/install.md @@ -35,7 +35,7 @@ cmake --install . ``` ```cmake -find_package(queryosity 0.4.1 REQUIRED) +find_package(queryosity 0.5.0 REQUIRED) ... add_library(MyAnalysis ...) ...