diff --git a/CHANGELOG.md b/CHANGELOG.md
index 186cd6d02e9d8f26c9247b3fc6c90b7559564104..d53ae5aaf0b232fe95dca9a9bb193be4def70669 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,4 @@
-# v2.0.0 (in development)
+# v2.0.0
 **User Facing**
 * Check Design File for spaces in name and file contents
 * Attempt to preven thredding error (which appears to only happen on 256GBv1 nodes)
diff --git a/README.md b/README.md
index ab2141e93077c9523590335cb541c70794fb94a5..e8fe72a632ec289314bce36b0fdcae53f929ef66 100755
--- a/README.md
+++ b/README.md
@@ -19,6 +19,18 @@ This pipeline is primarily used with a SLURM cluster on the BioHPC Cluster. Howe
 
 Additionally, the pipeline is designed to work with Astrocyte Workflow System using a simple web interface.
 
+Cloud Compatibility
+-------------------
+This pipeline is also capable of being run on AWS. To do so:
+* Build a AWS batch queue and environment either manually or with [aws-cloudformantion](https://console.aws.amazon.com/cloudformation/home?#/stacks/new?stackName=Nextflow&templateURL=https://s3.amazonaws.com/aws-genomics-workflows/templates/nextflow/nextflow-aio.template.yaml)
+* Edit one of the aws configs in workflow/config/
+  * Replace workDir with the S3 bucket generated
+  * Change region if different
+  * Change queue to the aws batch queue generated
+* The user must be have awscli configured with an appropriate authentication (with ```aws configure``` and access keys) in the environment which nextflow will be run
+* Add ```-profile ``` with the name aws config which was custamized
+  * eg. ```nextflow run workflow/main.nf -profile aws_ondemand```
+
 To Run:
 -------
 
diff --git a/workflow/conf/aws.config b/workflow/conf/aws.config
index e3612374c3997d368e808f7f9e0f31099a8dadda..6caee145d38bebcca65b4cb71b99e7dc10e930e9 100644
--- a/workflow/conf/aws.config
+++ b/workflow/conf/aws.config
@@ -11,5 +11,34 @@ process {
   executor = 'awsbatch'
   queue = 'default-'
   cpus = 1
-  memory = '10 GB'
+  memory = '1 GB'
+
+  withLabel: checkDesignFile {
+    cpus = 2
+    memory = '1 GB'
+  }
+  withLabel: count211 {
+    cpus = 2
+    memory = '30 GB'
+  }
+  withLabel: count220 {
+    cpus = 2
+    memory = '30 GB'
+  }
+  withLabel: count302 {
+    cpus = 2
+    memory = '30 GB'
+  }
+  withLabel: count310 {
+    cpus = 2
+    memory = '30 GB'
+  }
+  withLabel: versions {
+    cpus = 3
+    memory = '1 GB'
+  }
+  withLabel: multiqc {
+    cpus = 1
+    memory = '1 GB'
+  }
 }
diff --git a/workflow/nextflow.config b/workflow/nextflow.config
index 3e15f5769a1da8e676852a504655cf8845fd6db1..530f55b10e2f190960d1a22ac7cc07f0ee004d28 100644
--- a/workflow/nextflow.config
+++ b/workflow/nextflow.config
@@ -62,6 +62,6 @@ manifest {
   homePage = 'https://git.biohpc.swmed.edu/BICF/Astrocyte/cellranger_count'
   description = 'This pipeline is a wrapper for the cellranger count tool from 10x Genomics. It takes fastq files from 10x Genomics Single Cell Gene Expression libraries, performs alignment, filtering, barcode counting, and UMI counting. It uses the Chromium cellular barcodes to generate gene-barcode matrices, determine clusters, and perform gene expression analysis.'
   mainScript = 'main.nf'
-  version = 'v2.0.0_indev'
+  version = 'publish_2.0.0'
   nextflowVersion = '>=0.31.0'
 }