Skip to content

Commit d4e09e8

Browse files
authored
Prepare docs for 0.7.1 (#31)
1 parent ab2dfb7 commit d4e09e8

21 files changed

+58
-50
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,22 @@ Object Store Manipulator (osm: pronounced like `awesome`) - `curl` for cloud sto
1212
You can download and install a pre-built binary:
1313
```console
1414
# Linux amd 64-bit:
15-
wget -O osm https://cdn.appscode.com/binaries/osm/0.7.0/osm-linux-amd64 \
15+
wget -O osm https://cdn.appscode.com/binaries/osm/0.7.1/osm-linux-amd64 \
1616
&& chmod +x osm \
1717
&& sudo mv osm /usr/local/bin/
1818

1919
# Linux 386 32-bit:
20-
wget -O osm https://cdn.appscode.com/binaries/osm/0.7.0/osm-linux-386 \
20+
wget -O osm https://cdn.appscode.com/binaries/osm/0.7.1/osm-linux-386 \
2121
&& chmod +x osm \
2222
&& sudo mv osm /usr/local/bin/
2323

2424
# Mac 64-bit
25-
wget -O osm https://cdn.appscode.com/binaries/osm/0.7.0/osm-darwin-amd64 \
25+
wget -O osm https://cdn.appscode.com/binaries/osm/0.7.1/osm-darwin-amd64 \
2626
&& chmod +x osm \
2727
&& sudo mv osm /usr/local/bin/
2828

2929
# Mac 32-bit
30-
wget -O osm https://cdn.appscode.com/binaries/osm/0.7.0/osm-darwin-386 \
30+
wget -O osm https://cdn.appscode.com/binaries/osm/0.7.1/osm-darwin-386 \
3131
&& chmod +x osm \
3232
&& sudo mv osm /usr/local/bin/
3333
```

docs/CHANGELOG.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,28 +2,36 @@
22
title: Changelog | Osm
33
description: Changelog
44
menu:
5-
product_osm_0.7.0:
5+
product_osm_0.7.1:
66
identifier: changelog-osm
77
name: Changelog
88
parent: welcome
99
weight: 10
1010
product_name: osm
11-
menu_name: product_osm_0.7.0
11+
menu_name: product_osm_0.7.1
1212
section_menu_id: welcome
13-
url: /products/osm/0.7.0/welcome/changelog/
13+
url: /products/osm/0.7.1/welcome/changelog/
1414
aliases:
15-
- /products/osm/0.7.0/CHANGELOG/
15+
- /products/osm/0.7.1/CHANGELOG/
1616
---
1717

1818
# Change Log
1919

2020
## [Unreleased](https://github.com/appscode/osm/tree/HEAD)
2121

22-
[Full Changelog](https://github.com/appscode/osm/compare/0.6.3...HEAD)
22+
[Full Changelog](https://github.com/appscode/osm/compare/0.7.0...HEAD)
2323

2424
**Merged pull requests:**
2525

26-
- Add SSL support for S3 compatible Minio storage server [\#27](https://github.com/appscode/osm/pull/27) ([emruz-hossain](https://github.com/emruz-hossain))
26+
- Upgrade aws sdk to v1.12.7 [\#30](https://github.com/appscode/osm/pull/30) ([tamalsaha](https://github.com/tamalsaha))
27+
28+
## [0.7.0](https://github.com/appscode/osm/tree/0.7.0) (2018-04-28)
29+
[Full Changelog](https://github.com/appscode/osm/compare/0.6.3...0.7.0)
30+
31+
**Merged pull requests:**
32+
33+
- Prepare docs for 0.7.0 release [\#29](https://github.com/appscode/osm/pull/29) ([tamalsaha](https://github.com/tamalsaha))
34+
- Add SSL support for S3 compatible Minio storage server [\#27](https://github.com/appscode/osm/pull/27) ([hossainemruz](https://github.com/hossainemruz))
2735

2836
## [0.6.3](https://github.com/appscode/osm/tree/0.6.3) (2018-04-05)
2937
[Full Changelog](https://github.com/appscode/osm/compare/0.6.2...0.6.3)

docs/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,22 @@ Object Store Manipulator (osm: pronounced like `awesome`) - `curl` for cloud sto
77
You can download and install a pre-built binary:
88
```console
99
# Linux amd 64-bit:
10-
wget -O osm https://cdn.appscode.com/binaries/osm/0.7.0/osm-linux-amd64 \
10+
wget -O osm https://cdn.appscode.com/binaries/osm/0.7.1/osm-linux-amd64 \
1111
&& chmod +x osm \
1212
&& sudo mv osm /usr/local/bin/
1313

1414
# Linux 386 32-bit:
15-
wget -O osm https://cdn.appscode.com/binaries/osm/0.7.0/osm-linux-386 \
15+
wget -O osm https://cdn.appscode.com/binaries/osm/0.7.1/osm-linux-386 \
1616
&& chmod +x osm \
1717
&& sudo mv osm /usr/local/bin/
1818

1919
# Mac 64-bit
20-
wget -O osm https://cdn.appscode.com/binaries/osm/0.7.0/osm-darwin-amd64 \
20+
wget -O osm https://cdn.appscode.com/binaries/osm/0.7.1/osm-darwin-amd64 \
2121
&& chmod +x osm \
2222
&& sudo mv osm /usr/local/bin/
2323

2424
# Mac 32-bit
25-
wget -O osm https://cdn.appscode.com/binaries/osm/0.7.0/osm-darwin-386 \
25+
wget -O osm https://cdn.appscode.com/binaries/osm/0.7.1/osm-darwin-386 \
2626
&& chmod +x osm \
2727
&& sudo mv osm /usr/local/bin/
2828
```

docs/reference/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
title: Reference
33
description: OSM CLI Reference
44
menu:
5-
product_osm_0.7.0:
5+
product_osm_0.7.1:
66
identifier: reference
77
name: Reference
88
weight: 1000
9-
menu_name: product_osm_0.7.0
9+
menu_name: product_osm_0.7.1
1010
---

docs/reference/osm.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
22
title: Osm
33
menu:
4-
product_osm_0.7.0:
4+
product_osm_0.7.1:
55
identifier: osm
66
name: Osm
77
parent: reference
88
weight: 0
99

1010
product_name: osm
11-
menu_name: product_osm_0.7.0
11+
menu_name: product_osm_0.7.1
1212
section_menu_id: reference
1313
aliases:
14-
- products/osm/0.7.0/reference/
14+
- products/osm/0.7.1/reference/
1515

1616
---
1717
## osm

docs/reference/osm_config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
title: Osm Config
33
menu:
4-
product_osm_0.7.0:
4+
product_osm_0.7.1:
55
identifier: osm-config
66
name: Osm Config
77
parent: reference
88
product_name: osm
9-
menu_name: product_osm_0.7.0
9+
menu_name: product_osm_0.7.1
1010
section_menu_id: reference
1111
---
1212
## osm config

docs/reference/osm_config_current-context.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
title: Osm Config Current-Context
33
menu:
4-
product_osm_0.7.0:
4+
product_osm_0.7.1:
55
identifier: osm-config-current-context
66
name: Osm Config Current-Context
77
parent: reference
88
product_name: osm
9-
menu_name: product_osm_0.7.0
9+
menu_name: product_osm_0.7.1
1010
section_menu_id: reference
1111
---
1212
## osm config current-context

docs/reference/osm_config_get-contexts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
title: Osm Config Get-Contexts
33
menu:
4-
product_osm_0.7.0:
4+
product_osm_0.7.1:
55
identifier: osm-config-get-contexts
66
name: Osm Config Get-Contexts
77
parent: reference
88
product_name: osm
9-
menu_name: product_osm_0.7.0
9+
menu_name: product_osm_0.7.1
1010
section_menu_id: reference
1111
---
1212
## osm config get-contexts

docs/reference/osm_config_set-context.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
title: Osm Config Set-Context
33
menu:
4-
product_osm_0.7.0:
4+
product_osm_0.7.1:
55
identifier: osm-config-set-context
66
name: Osm Config Set-Context
77
parent: reference
88
product_name: osm
9-
menu_name: product_osm_0.7.0
9+
menu_name: product_osm_0.7.1
1010
section_menu_id: reference
1111
---
1212
## osm config set-context

docs/reference/osm_config_use-context.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
title: Osm Config Use-Context
33
menu:
4-
product_osm_0.7.0:
4+
product_osm_0.7.1:
55
identifier: osm-config-use-context
66
name: Osm Config Use-Context
77
parent: reference
88
product_name: osm
9-
menu_name: product_osm_0.7.0
9+
menu_name: product_osm_0.7.1
1010
section_menu_id: reference
1111
---
1212
## osm config use-context

0 commit comments

Comments
 (0)