From 8a15f09ff54a909605eda0070689c0b99401db20 Mon Sep 17 00:00:00 2001 From: Hariharan Devarajan Date: Wed, 26 Jun 2024 14:37:34 -0700 Subject: [PATCH] Release v1.0.2 (#105) --- MANIFEST.in | 4 +++- README.md | 2 +- docs/build.rst | 2 +- docs/conf.py | 2 +- setup.py | 2 +- 5 files changed, 7 insertions(+), 5 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 6ad3b6a..fb0d71c 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -3,4 +3,6 @@ graft cmake graft dependency graft include -include CMakeLists.txt \ No newline at end of file +include CMakeLists.txt +include LICENSE +include README.md \ No newline at end of file diff --git a/README.md b/README.md index 61ff434..def0a23 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.1 +# DFTracer v1.0.2 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 37f29c6..f70256f 100644 --- a/docs/build.rst +++ b/docs/build.rst @@ -36,7 +36,7 @@ From Github .. code-block:: Bash - DFT_VERSION=v1.0.1 + DFT_VERSION=v1.0.2 pip install git+https://github.com/hariharan-devarajan/dftracer.git@${DFT_VERSION} .. attention:: diff --git a/docs/conf.py b/docs/conf.py index ace87e0..ded7edd 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.1' +release = u'1.0.2' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index f224654..59168a3 100644 --- a/setup.py +++ b/setup.py @@ -151,7 +151,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.1", + version="1.0.2", description="I/O profiler for deep learning python apps. Specifically for dlio_benchmark.", long_description=long_description, long_description_content_type="text/markdown",