Skip to content

Commit

Permalink
Merge pull request #1435 from PrefectHQ/org-062
Browse files Browse the repository at this point in the history
Archive 0.6.2 documentation
  • Loading branch information
cicdw committed Aug 31, 2019
2 parents 07d0f15 + 0fa1e3a commit 158038a
Show file tree
Hide file tree
Showing 60 changed files with 5,099 additions and 1 deletion.
44 changes: 43 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,48 @@ These changes are available in the [master branch](https://github.com/PrefectHQ/

### Features

- None

### Enhancements

- None

### Task Library

- None

### Fixes

- None

### Deprecations

- None

### Breaking Changes

- None

### Contributors

- None


## 0.6.3 <Badge text="beta" type="success"/>

Released August 30, 2019

### Fixes

- Fix issue with reduced mapped tasks not respecting retries - [#1436](https://github.com/PrefectHQ/prefect/issues/1436)


## 0.6.2 <Badge text="beta" type="success"/>

Released August 30, 2019

### Features

- Added Local, Kubernetes, and Nomad agents - [#1341](https://github.com/PrefectHQ/prefect/pull/1341)
- Add the ability for Tasks to sequentially loop - [#1356](https://github.com/PrefectHQ/prefect/pull/1356)

Expand Down Expand Up @@ -38,7 +80,6 @@ These changes are available in the [master branch](https://github.com/PrefectHQ/

- Fix issue with Docker storage not respecting user-provided image names - [#1335](https://github.com/PrefectHQ/prefect/pull/1335)
- Fix issue with local retries in Cloud not always running in-process - [#1348](https://github.com/PrefectHQ/prefect/pull/1348)
- Fix issue with reduced mapped tasks not respecting retries - [#1436](https://github.com/PrefectHQ/prefect/issues/1436)

### Deprecations

Expand All @@ -53,6 +94,7 @@ These changes are available in the [master branch](https://github.com/PrefectHQ/

- [Alex Kravetz](http://github.com/akravetz)


## 0.6.1 <Badge text="beta" type="success"/>

Released August 8, 2019
Expand Down
3 changes: 3 additions & 0 deletions docs/.vuepress/config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
const sidebar54 = require('../api/0.5.4/sidebar')
const sidebar60 = require('../api/0.6.0/sidebar')
const sidebar61 = require('../api/0.6.1/sidebar')
const sidebar62 = require('../api/0.6.2/sidebar')
const glob = require('glob')

// function for loading all MD files in a directory
Expand Down Expand Up @@ -57,6 +58,7 @@ module.exports = {
text: "API Reference",
items: [
{ text: "Unreleased", link: "/api/unreleased/" },
{ text: "0.6.2 / 0.6.3", link: "/api/0.6.2/" },
{ text: "0.6.1", link: "/api/0.6.1/" },
{ text: "0.6.0", link: "/api/0.6.0/" },
{ text: "0.5.4", link: "/api/0.5.4/" }
Expand All @@ -67,6 +69,7 @@ module.exports = {
"/api/0.5.4/": sidebar54.sidebar,
"/api/0.6.0/": sidebar60.sidebar,
"/api/0.6.1/": sidebar61.sidebar,
"/api/0.6.2/": sidebar62.sidebar,
"/api/unreleased/": [
{ title: "API Reference", path: "/api/unreleased/" },
"changelog",
Expand Down
95 changes: 95 additions & 0 deletions docs/api/0.6.2/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
---
sidebarDepth: 0
editLink: false
---


<div align="center" style="margin-bottom:40px;">
<img src="/assets/wordmark-color-horizontal.svg" width=600 >
</div>

# API Reference

This API reference is automatically generated from Prefect's source code and unit-tested to ensure it's up to date.


## Hello, world! 👋

We've rebuilt data engineering for the data science era.

Prefect is a new workflow management system, designed for modern infrastructure and powered by the open-source Prefect Core workflow engine. Users organize `Tasks` into `Flows`, and Prefect takes care of the rest.

Read the [docs](https://docs.prefect.io); get the [code](#installation); ask us [anything](https://join.slack.com/t/prefect-public/shared_invite/enQtNzE5OTU3OTQwNzc1LTQ5M2FkZmQzZjI0ODg1ZTBmOTc0ZjVjYWFjMWExZDAyYzBmYjVmMTE1NTQ1Y2IxZTllOTc4MmI3NzYxMDlhYWU)!

```python
from prefect import task, Flow


@task
def say_hello():
print("Hello, world!")


with Flow("My First Flow") as flow:
say_hello()


flow.run() # "Hello, world!"
```

## Docs

Prefect's documentation -- including concepts, tutorials, and a full API reference -- is always available at [docs.prefect.io](https://docs.prefect.io).

Instructions for contributing to documentation can be found in the [development guide](https://docs.prefect.io/guide/development/documentation.html).

## Contributing

Read about Prefect's [community](https://docs.prefect.io/guide/welcome/community.html) or dive in to the [development guides](https://docs.prefect.io/guide/development/overview.html) for information about contributions, documentation, code style, and testing.

Join our [Slack](https://join.slack.com/t/prefect-public/shared_invite/enQtNzE5OTU3OTQwNzc1LTQ5M2FkZmQzZjI0ODg1ZTBmOTc0ZjVjYWFjMWExZDAyYzBmYjVmMTE1NTQ1Y2IxZTllOTc4MmI3NzYxMDlhYWU) to chat about Prefect, ask questions, and share tips.

Prefect is committed to ensuring a positive environment. All interactions are governed by our [Code of Conduct](https://docs.prefect.io/guide/welcome/code_of_conduct.html).

## "...Prefect?"

From the Latin _praefectus_, meaning "one who is in charge", a prefect is an official who oversees a domain and makes sure that the rules are followed. Similarly, Prefect is responsible for making sure that workflows execute properly.

It also happens to be the name of a roving researcher for that wholly remarkable book, _The Hitchhiker's Guide to the Galaxy_.

## Installation

### Requirements

Prefect requires Python 3.5.2+.

### Install latest release

Using `pip`:

```bash
pip install prefect
```

or `conda`:

```bash
conda install -c conda-forge prefect
```

or `pipenv`:
```
pipenv install --pre prefect
```

### Install bleeding edge

```bash
git clone https://github.com/PrefectHQ/prefect.git
pip install ./prefect
```

## License

Prefect is licensed under the Apache Software License version 2.0.
<p class="auto-gen">This documentation was auto-generated from commit <a href='https://github.com/PrefectHQ/prefect/commit/n/a'>n/a</a> </br>on August 30, 2019 at 22:53 UTC</p>
Loading

0 comments on commit 158038a

Please sign in to comment.