Skip to content

Commit

Permalink
Version bump to 0.2.5 (#227)
Browse files Browse the repository at this point in the history
- Added the Type Explorer in Dagit. You can now browse all the types
declared in a pipeline.
- Added the --watch/--no-watch flag to dagit. This allows you to turn
off watching in cases where there are two many files below the
current working directory.
  • Loading branch information
schrockn authored Oct 5, 2018
1 parent 55ddec1 commit 4e4c649
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion python_modules/dagit/dagit/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,11 @@ def on_any_event(self, event):
@repository_target_argument
@click.option('--host', '-h', type=click.STRING, default='127.0.0.1', help="Host to run server on")
@click.option('--port', '-p', type=click.INT, default=3000, help="Port to run server on")
@click.option('--watch/--no-watch', default=True)
@click.option(
'--watch/--no-watch',
default=True,
help='Watch for changes in the current working directory and all recursive subfolders',
)
def ui(host, port, watch, **kwargs):
repository_target_info = load_target_info_from_cli_args(kwargs)
dynamic_obj_repo = load_repository_object_from_target_info(repository_target_info)
Expand Down
2 changes: 1 addition & 1 deletion python_modules/dagit/dagit/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.2.4'
__version__ = '0.2.5'
2 changes: 1 addition & 1 deletion python_modules/dagster/dagster/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.2.4'
__version__ = '0.2.5'

0 comments on commit 4e4c649

Please sign in to comment.