Skip to content

Commit 5878845

Browse files
authored
docs: 1.2.0 release docs (#253)
1 parent c84bb3b commit 5878845

File tree

4 files changed

+24
-13
lines changed

4 files changed

+24
-13
lines changed

CHANGELOG.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.2.0] — 2021-04-16
11+
12+
- [Security] : Bump Python version to 3.8 (@fargito)
13+
- [Security] : Bump Django version to 3.2 (@fargito)
14+
- [Security] : Update all frontend packages (@fargito)
15+
- [Security] : Bump Redis version to 6.2 (@fargito)
16+
- [Bugfix]: add environment to postgresql (@MParvin)
17+
1018
## [1.1.5] — 2020-07-04
1119

1220
- [Accessibility] : improve accessibility
@@ -70,7 +78,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7078

7179
🎉Initial release! 🎉
7280

73-
[unreleased]: https://github.com/theodo/falco/compare/1.1.5...HEAD
81+
[unreleased]: https://github.com/theodo/falco/compare/1.2.0...HEAD
82+
[1.2.0]: https://github.com/theodo/falco/compare/1.2.0...1.1.5
7483
[1.1.5]: https://github.com/theodo/falco/compare/1.1.5...1.1.4
7584
[1.1.4]: https://github.com/theodo/falco/compare/1.1.4...1.1.3
7685
[1.1.3]: https://github.com/theodo/falco/compare/1.1.3...1.1.2

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ You can try a demo version by logging in to https://falco.theo.do with the crede
3737

3838
You can deploy Falco on Heroku by clicking on the following button:
3939

40-
[![Deploy to Heroku](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/theodo/falco/tree/1.1.5)
40+
[![Deploy to Heroku](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/theodo/falco/tree/1.2.0)
4141

4242
You will need to provide your credit card details to Heroku, but you will be under the free tier by default. You can find more details on why they are needed and Heroku’s pricing policy [in the docs](https://getfal.co).
4343

docs/docs/getting-started/installation.mdx

+12-10
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ In addition, the Free Tier of the PostgreSQL addon used in Falco [currently allo
2525

2626
To sum up:
2727

28-
| Falco features | Free Tier | Upgraded dyno ($14/month) | Upgraded Postgres ($9/month) | Both upgrades ($16/month) |
29-
|-----------------------------------|-----------|--------------------------|------------------------------|---------------------------|
30-
| Running audits automatically |||||
31-
| Visualizing and comparing results |||||
32-
| Always-up instance |||||
33-
| Running *lots* of audits |||||
28+
| Falco features | Free Tier | Upgraded dyno ($14/month) | Upgraded Postgres ($9/month) | Both upgrades ($16/month) |
29+
| --------------------------------- | --------- | ------------------------- | ---------------------------- | ------------------------- |
30+
| Running audits automatically | | | | |
31+
| Visualizing and comparing results | | | | |
32+
| Always-up instance | | | | |
33+
| Running _lots_ of audits | | | | |
3434

3535
You are free to upgrade or downgrade at any time—beware though that should you have more than 10.000 rows in the database, you will have to delete old audits to qualify again for the free Postgres tier.
3636

@@ -41,11 +41,13 @@ Click on the following button to trigger the deployment of your Falco instance:
4141
import Link from "@docusaurus/Link";
4242

4343
<Link
44-
className="button button--primary button--lg"
45-
href={"https://heroku.com/deploy?template=https://github.com/theodo/falco/tree/1.1.5"}
46-
style={{marginBottom: '20px'}}
44+
className="button button--primary button--lg"
45+
href={
46+
"https://heroku.com/deploy?template=https://github.com/theodo/falco/tree/1.2.0"
47+
}
48+
style={{ marginBottom: "20px" }}
4749
>
48-
Deploy to Heroku
50+
Deploy to Heroku
4951
</Link>
5052

5153
Then, choose a name for your instance (like `falco-mycompany`), pick the region closest to you, and follow Heroku’s instructions.

docs/src/pages/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ function Home() {
106106
"button button--primary button--lg",
107107
styles.addFocus
108108
)}
109-
href="https://heroku.com/deploy?template=https://github.com/theodo/falco/tree/1.1.5"
109+
href="https://heroku.com/deploy?template=https://github.com/theodo/falco/tree/1.2.0"
110110
target="_blank"
111111
>
112112
Deploy to Heroku

0 commit comments

Comments
 (0)