Skip to content

Commit b244c50

Browse files
committed
[TASK] updated version numbers in the docs
1 parent 98e1786 commit b244c50

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

docs/guides/000-installation/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This guide shows you how to add matestack-ui-core to an existing rails applicati
77
Add 'matestack-ui-core' to your Gemfile
88

99
```ruby
10-
gem 'matestack-ui-core', '~> 1.0.0'
10+
gem 'matestack-ui-core', '~> 1.1'
1111
```
1212

1313
and run
@@ -27,7 +27,7 @@ Rails 6+ apps use webpacker by default. Rails 5 and below apps use the asset pip
2727
Add 'matestack-ui-core' to your `package.json` by running:
2828

2929
```
30-
$ yarn add https://github.com/matestack/matestack-ui-core#v1.0.1
30+
$ yarn add https://github.com/matestack/matestack-ui-core#v1.1.0
3131
$ yarn install
3232
```
3333

docs/guides/100-tutorial/01_setup.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ We skip turbolinks, because matestack has it's own loading api which makes turbo
3232

3333
<details>
3434
<summary>Remove turbolinks if installed</summary>
35-
We encourage you to remove turbolinks if it's installed. To do so remove the line <code>gem 'turbolinks', '~> 5'</code> from your Gemfile and remove <code>require("turbolinks").start()</code> from the <code>app/javascript/packs/application.js</code> file. To clean things up remove the two <code>"data-turbolinks-track": "reload"</code> key/value pairs from your <code>app/views/application.html.erb</code>.
35+
We encourage you to remove turbolinks if it's installed. To do so remove the line <code>gem 'turbolinks', '~> 5'</code> from your Gemfile and remove <code>require("turbolinks").start()</code> from the <code>app/javascript/packs/application.js</code> file. To clean things up remove the two <code>"data-turbolinks-track": "reload"</code> key/value pairs from your <code>app/views/application.html.erb</code>.
3636
</details>
3737
<br/>
3838

@@ -60,7 +60,7 @@ to start the application. Now visit [localhost:3000](http://localhost:3000/) and
6060

6161
To install matestack, run `gem install matestack-ui-core` or add `gem 'matestack-ui-core'` to your Gemfile and run `bundle install`.
6262

63-
For a complete setup with Webpacker, you also need to run `yarn add https://github.com/matestack/matestack-ui-core#v1.0.0` followed by `yarn install`.
63+
For a complete setup with Webpacker, you also need to run `yarn add https://github.com/matestack/matestack-ui-core#v1.1.0` followed by `yarn install`.
6464

6565
Then, add
6666

docs/guides/README.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@
22

33
Welcome to the `matestack-ui-core` guides! In here, we cover various use cases of this library, along with examples and explanations.
44

5-
**Note:**
6-
* These guides/docs are written for `>= 1.0.0`. If you're looking for the docs for older releases, please have a look at the github repo itself within `/docs` and select the desired version tag.
7-
* Most of the guides are currently in progress. Please be patient while we do our best to create content while releasing a stable 1.0.0 release which will happen this September
8-
5+
**Note:**
6+
These guides/docs are written for `>= 1.1.0`. If you're looking for the docs for older releases, please have a look at the github repo itself within `/docs` and select the desired version tag.
97

108
## Installation
119

@@ -16,7 +14,7 @@ Learn how to properly set up `matestack-ui-core` with your existing Rails applic
1614

1715
These series of guides introduces you to matestack step by step. We start of by creating a rails app and subsequently implement a basic CRUD app using matestack. Afterwards we dive deeper into matestacks functionalities giving you a great starting point and a good introduction. At the end we provide guides on how to work with devise and deploy your application to heroku.
1816

19-
This guide is split into several parts building upon each other. It is intended to be a work along guide. Feel free to adapt things to your needs.
17+
This guide is split into several parts building upon each other. It is intended to be a work along guide. Feel free to adapt things to your needs.
2018

2119
You can start with [the first article](/docs/guides/100-tutorial/00_introduction.md).
2220

0 commit comments

Comments
 (0)