diff --git a/CHANGELOG.md b/CHANGELOG.md index ff19d3ef..b455fb8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [PEP 440](https://www.python.org/dev/peps/pep-0440/) and uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.13.6] + +### Changed +* Changed credit limit documentation back to 8,000 + ## [0.13.5] ### Added diff --git a/docs/whats_new.md b/docs/whats_new.md index b5bf9d7c..f8fcaaf0 100644 --- a/docs/whats_new.md +++ b/docs/whats_new.md @@ -1,36 +1,5 @@ # What's New -## Apr 24, 2026 - -**Effective April 24, monthly credit allotments for ASF’s HyP3 On Demand processing service will be reduced to 4,000 -credits per user per month.** - -Due to increased demand and recent changes to our operating costs, ASF no longer has sufficient processing capacity -to cover the current level of On Demand job requests. In recent weeks, processing requests have far outpaced our -system capacity, resulting in long wait times and unprocessed jobs for many users. - -To facilitate timely processing of all submitted jobs, we are reducing the monthly credit allotment -to 4,000 credits per user to better align request volume with processing capacity. Refer to the -[credit cost table](using/credits.md#credit-cost-table "Credit Cost Table") to determine the -number of products you can order per month. - -ASF remains committed to providing On Demand processing within the constraints of our limited resources. We are making -this change to make sure all available processing time is used effectively and is equitably distributed. Refer to the -credit reduction post from [Nov. 26, 2025](#nov-26-2025 "What's New: Nov. 26, 2025") -for suggestions on processing options that use fewer credits. - -The [HyP3+](about/hyp3_plus.md "HyP3+ Documentation") platform is an option for applications requiring more than 4,000 -credits per month. HyP3+ users -[purchase processing credits](about/hyp3_plus.md#purchasing-credits "Purchasing HyP3+ Credits") -to run On Demand jobs, and can purchase as many credits as they need to complete a project. -HyP3+ jobs are run in a separate environment with no limitations on processing capacity, so jobs are guaranteed -to run to completion with little to no wait time before processing begins. - -[Learn more about the differences between HyP3 and HyP3+](about.md#the-hyp3-service-family "Compare HyP3 Basic and HyP3+"). - -If you have questions or concerns about this change, please email -[uso@asf.alaska.edu](mailto:uso@asf.alaska.edu). - ## Nov 26, 2025 **Effective December 1st, monthly credit allotments for ASF’s HyP3 On Demand processing service will be reduced to 8,000 diff --git a/macros.py b/macros.py index 01fd5d99..0d7f3386 100644 --- a/macros.py +++ b/macros.py @@ -2,7 +2,7 @@ # IMPORTANT: Update the email template when _CREDITS_PER_MONTH_VALUE changes: # https://github.com/ASFHyP3/hyp3-operations/blob/main/templates/approved.md.j2 -_CREDITS_PER_MONTH_VALUE = 4_000 +_CREDITS_PER_MONTH_VALUE = 8_000 _COST_PER_CREDIT_VALUE = 0.05 CREDITS_PER_MONTH = f'{_CREDITS_PER_MONTH_VALUE:,}'