diff --git a/README.md b/README.md
index dc7483f..8487d36 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,11 @@
 # CheetahPy
-This module is used to access the locally hosted API provided by within [Golden Cheetah](https://github.com/GoldenCheetah/GoldenCheetah).
+This module is used to access [Golden Cheetah](https://github.com/GoldenCheetah/GoldenCheetah) based data.
+**CheetahPy_API** enables pythonic access to the GC API, allowing for programmatic access to GC rendered data.
+**opendata_dataset** enables similar access and summary/activity functions for locally stored opendata project files that have been pre-compiled by GC.
 
 Documentation specifically for the API can be found [here](https://github.com/GoldenCheetah/GoldenCheetah/wiki/UG_Special-Topics_REST-API-documentation). However, the basic hierarchy can be referenced below and knowledge of the API is unnecessary for using this module. Broadly the API provides no compute functionality and instead is purely desgined as a raw data retrieval pipeline.
 
 Golden Cheetah has five key object classes: Athletes, Activities, Zones, Measures, and Meanmax.
 Athlete is the node from which all others are referenced.
+
+
diff --git a/cheetahpy/__init__.py b/cheetahpy/__init__.py
index 0bd8f96..0a80c0b 100644
--- a/cheetahpy/__init__.py
+++ b/cheetahpy/__init__.py
@@ -1,5 +1,5 @@
 __title__ = 'CheetahPy'
-__version__ = '0.3.0'
+__version__ = '0.4.0'
 __author__ = 'RyanAugust'
 __license__ = 'MIT'
 __copyright__ = 'Copyright 2023'
@@ -16,4 +16,5 @@
 
 __all__ = [
     'CheetahPy',
+    'opendata_dataset'
 ]
diff --git a/setup.py b/setup.py
index 7c13655..efa3d48 100644
--- a/setup.py
+++ b/setup.py
@@ -6,10 +6,10 @@
 
 setuptools.setup(
     name="cheetahpy",
-    version="0.3.0",
+    version="0.4.0",
     author="Ryan Duecker",
     author_email='ryan.duecker@yahoo.com',
-    description="Python wrapper for working with the Golden Cheetah API",
+    description="Python wrapper for working with the Golden Cheetah API & opendata",
     extras_require={
         "test": [
             "pytest"]