Skip to content

Commit

Permalink
Bump version to v1.1.0 (getlago#337)
Browse files Browse the repository at this point in the history
  • Loading branch information
vincent-pochet committed Mar 26, 2024
1 parent 2eb3845 commit 3434d2c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Engineers be like…

Read more first-hand experiences from Qonto, Algolia, Pleo, Segment, or the 350+. Hackernews comments [here](https://news.ycombinator.com/item?id=31424450).

**The Solution:** Lago, the open-source billing API for product-led SaaS
**The Solution:** Lago, the open-source billing API for product-led SaaS
- Event-based: if you can track it, you can charge for it;
- Built for product-led growth companies;
- Hybrid pricing: subscription and usage;
Expand Down Expand Up @@ -105,7 +105,7 @@ docker-compose up

You can now open your browser and go to http:https://localhost to connect to the application. Lago's API is exposed at http:https://localhost:3000.

Note that if our docker server is not at http:https://localhost, the following env variables must be set: `LAGO_API_URL LAGO_API_URL`. This may be on the command line or in your .env file. For example:
Note that if our docker server is not at http:https://localhost, the following env variables must be set: `LAGO_API_URL`. This may be on the command line or in your .env file. For example:

```
LAGO_API_URL="http:https://192.168.122.71:3000"
Expand Down Expand Up @@ -147,18 +147,18 @@ You can follow this [guide](https://github.com/getlago/lago/wiki/Development-Env
You can contribute by following our [guidelines](https://github.com/getlago/lago/blob/main/CONTRIBUTING.md).

## 💡 Philosophy
B2B SaaS has evolved, but billing has not yet.
B2B SaaS has evolved, but billing has not yet.

### 1- We’re not in the “subscription economy” anymore. And we won’t go “full usage-based pricing” quite yet
Pricings are now mostly hybrid: they include a usage-based component (i.e. “if you use more you pay more”) and a subscription component (i.e. a recurring fee for basic usage).

Not all software companies will go full “usage-based” like Snowflake for instance. This model is the new standard for cloud infrastructure products. However, in other areas of SaaS, users want to know beforehand how much they will pay to control their spending and software companies want to be able to predict recurring revenues.

### 2- Go-to-market is not either bottom-up or top-down anymore
SaaS used to be either self-service (SMBs) or sales-led (Enterprises).
SaaS used to be either self-service (SMBs) or sales-led (Enterprises).
Go-to-market now mixes the self-service (all customers access the same price plans) and sales-led (customers get a custom quote from a sales representative) motions.
A typical journey involves an individual contributor in a company who tests a new tool, puts their corporate credit card in, and starts spreading the use of the tool within the organization. At that point, the VP or head of department might want to upgrade to a custom plan tailored to the needs of the whole organization.
As a result, billing needs to be flexible, automated, and transparent enough to embrace this hybrid go-to-market motion as well.
As a result, billing needs to be flexible, automated, and transparent enough to embrace this hybrid go-to-market motion as well.

### 3- The “rent seeker” pricing of current billing solutions needs to stop
Why do payment companies take a cut on revenues?
Expand Down
2 changes: 1 addition & 1 deletion api
Submodule api updated 202 files
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ services:

api:
container_name: lago-api
image: getlago/api:v1.0.0
image: getlago/api:v1.1.0
restart: unless-stopped
depends_on:
- db
Expand Down Expand Up @@ -87,7 +87,7 @@ services:

front:
container_name: lago-front
image: getlago/front:v1.0.0
image: getlago/front:v1.1.0
restart: unless-stopped
# Use this command if you want to use SSL with Let's Encrypt
# command: "/bin/sh -c 'while :; do sleep 6h & wait $${!}; nginx -s reload; done & nginx -g \"daemon off;\"'"
Expand Down Expand Up @@ -126,7 +126,7 @@ services:

api-worker:
container_name: lago-worker
image: getlago/api:v1.0.0
image: getlago/api:v1.1.0
restart: unless-stopped
depends_on:
api:
Expand Down Expand Up @@ -170,7 +170,7 @@ services:
# It is recommendend if you have a high usage of events to not impact the other Sidekiq Jobs.
#api-events-worker:
# container_name: lago-events-worker
# image: getlago/api:v1.0.0
# image: getlago/api:v1.1.0
# restart: unless-stopped
# depends_on:
# api:
Expand Down Expand Up @@ -208,7 +208,7 @@ services:

api-clock:
container_name: lago-clock
image: getlago/api:v1.0.0
image: getlago/api:v1.1.0
restart: unless-stopped
depends_on:
api:
Expand Down
2 changes: 1 addition & 1 deletion front
Submodule front updated 36 files
+8 −1 ditto/base.json
+2 −0 ditto/config.yml
+3 −0 ditto/index.js
+2 −2 package.json
+11 −1 src/App.tsx
+2 −0 src/components/designSystem/Icon/mapping.tsx
+4 −2 src/components/graphs/Invoices.tsx
+5 −2 src/components/graphs/Mrr.tsx
+4 −2 src/components/graphs/Usage.tsx
+1 −0 src/components/graphs/types.ts
+14 −11 src/components/invoices/InvoiceCreditNotesTable.tsx
+1 −1 src/components/invoices/details/InvoiceDetailsTableBodyLine.tsx
+3 −3 src/components/plans/ChargesSection.tsx
+413 −0 src/components/plans/CommitmentsSection.tsx
+100 −0 src/components/plans/details/PlanDetailsCommitmentsSection.tsx
+15 −7 src/components/plans/details/PlanDetailsOverview.tsx
+7 −0 src/components/plans/types.ts
+1 −5 src/components/settings/EditOrganizationInvoiceNumberingDialog.tsx
+1 −0 src/core/constants/form.ts
+13 −0 src/core/formats/formatInvoiceItemsMap.ts
+8 −0 src/core/serializers/__tests__/serializePlanInput.test.ts
+20 −1 src/core/serializers/serializePlanInput.ts
+161 −17 src/generated/graphql.tsx
+25 −0 src/hooks/__tests__/fixtures.ts
+35 −0 src/hooks/plans/usePlanForm.tsx
+36 −12 src/hooks/useCreateCreditNote.ts
+3 −1 src/hooks/useCurrentUser.ts
+32 −0 src/layouts/SideNavLayout.tsx
+6 −3 src/pages/Analytics.tsx
+20 −0 src/pages/CreatePlan.tsx
+8 −0 src/pages/CreateSubscription.tsx
+14 −11 src/pages/CreditNoteDetails.tsx
+28 −8 src/pages/PlanDetails.tsx
+10 −3 src/pages/SubscriptionDetails.tsx
+8 −0 src/public/icons/heart.svg
+247 −167 yarn.lock

0 comments on commit 3434d2c

Please sign in to comment.