From 375d61dde75188229db793aaaf66d0088925b7ed Mon Sep 17 00:00:00 2001 From: Javi R <4920956+rameerez@users.noreply.github.com> Date: Sun, 1 Sep 2024 02:08:41 +0100 Subject: [PATCH] Draft new release + version bump (v0.2.2) --- CHANGELOG.md | 6 ++++++ lib/profitable/version.rb | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ef19895..90f0245 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # `profitable` +## [0.2.2] - 2024-09-01 + +- Improve MRR calculations with prorated churned and new MRR (hopefully fixes bad churned MRR calculations) +- Only consider paid charges for all revenue calculations (hopefully fixes bad ARPC calculations) +- Add `multiple:` parameter as another option for `estimated_valuation` (same as `at:`, just syntactic sugar) + ## [0.2.1] - 2024-08-31 - Add syntactic sugar for `estimated_valuation(at: "3x")` diff --git a/lib/profitable/version.rb b/lib/profitable/version.rb index ed8ea2c..0f27bb1 100644 --- a/lib/profitable/version.rb +++ b/lib/profitable/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Profitable - VERSION = "0.2.1" + VERSION = "0.2.2" end