From 50d4455d60df59450b3c644a72584b99c07d8d73 Mon Sep 17 00:00:00 2001 From: Hariharan Devarajan Date: Wed, 31 Jul 2024 00:29:06 -0700 Subject: [PATCH] added release changes. (#142) --- CMakeLists.txt | 2 +- README.md | 2 +- docs/build.rst | 2 +- docs/conf.py | 2 +- setup.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9d557b1..658e2bd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,7 +14,7 @@ set(DFTRACER_PACKAGE_VERSION_MINOR "${DFTRACER_VERSION_PATCH}") set(DFTRACER_PACKAGE_STRING "${DFTRACER_PACKAGE_NAME} ${DFTRACER_PACKAGE_VERSION}") set(DFTRACER_PACKAGE_TARNAME "${DFTRACER_PACKAGE}") -set(DFTRACER_VERSION "(1, 0, 2)") +set(DFTRACER_VERSION "(1, 0, 3)") project(dftracer LANGUAGES C CXX) diff --git a/README.md b/README.md index 50599a2..db0d610 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Coverage Status](https://coveralls.io/repos/github/hariharan-devarajan/dftracer/badge.svg?branch=feature/apis)](https://coveralls.io/github/hariharan-devarajan/dftracer?branch=dev) [![Documentation Status](https://readthedocs.org/projects/dftracer/badge/?version=latest)](https://dftracer.readthedocs.io/en/latest/?badge=latest) -# DFTracer v1.0.2 +# DFTracer v1.0.3 A multi-level profiler for capturing application functions and low-level system I/O calls from deep learning workloads. Requirements for profiler diff --git a/docs/build.rst b/docs/build.rst index f70256f..8840ef4 100644 --- a/docs/build.rst +++ b/docs/build.rst @@ -36,7 +36,7 @@ From Github .. code-block:: Bash - DFT_VERSION=v1.0.2 + DFT_VERSION=v1.0.3 pip install git+https://github.com/hariharan-devarajan/dftracer.git@${DFT_VERSION} .. attention:: diff --git a/docs/conf.py b/docs/conf.py index ded7edd..caf4c0a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ # The short X.Y version version = u'0.0' # The full version, including alpha/beta/rc tags -release = u'1.0.2' +release = u'1.0.3' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 4f476e4..40eaa70 100644 --- a/setup.py +++ b/setup.py @@ -154,7 +154,7 @@ def build_extension(self, ext: CMakeExtension) -> None: # logic and declaration, and simpler if you include description/version in a file. setup( name="pydftracer", - version="1.0.2", + version="1.0.3", description="I/O profiler for deep learning python apps. Specifically for dlio_benchmark.", long_description=long_description, long_description_content_type="text/markdown",