Skip to content

Commit

Permalink
Merge pull request #259 from AkshatBajaj/release/surround-cli-v0.0.1
Browse files Browse the repository at this point in the history
RELEASE: Surround CLI v0.0.1
  • Loading branch information
AkshatBajaj authored Dec 11, 2020
2 parents 6835695 + 0f92785 commit 538dc24
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 24 deletions.
18 changes: 2 additions & 16 deletions surround_cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,28 +6,14 @@ All notable changes to this project will be documented in this file.

### Added

- Add `license` to setup.py

### Changed

### Fixed

### Limitation

## [0.0.14] - 2020-07-01

### Added

- Migrate from CircleCI to Codefresh
- Use sqlite3 for doit database
## [0.0.1] - 2020-12-08

### Changed

- Simplify the assembler
- Add metrics to non predict pipelines
- Disable experimentation by default
- Add a description for the notebook task

### Fixed

- Update about and getting started link
- Split Surround library and CLI
2 changes: 1 addition & 1 deletion surround_cli/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.14
0.0.1
2 changes: 1 addition & 1 deletion surround_cli/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ doit==0.31.1
tornado==6.0.2
google-cloud-storage==1.20.0
pylint==2.4.3
surround==0.0.14
surround==0.1.0
9 changes: 3 additions & 6 deletions surround_cli/templates/new/web_runner.py.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,8 @@ class InfoHandler(tornado.web.RequestHandler):
def initialize(self, assembler):
self.assembler = assembler

def get(self):
self.write({{'version': self.get_version()}})

def get_version(self):
with open('VERSION') as version_file:
VERSION = version_file.read().strip()
self.version = version_file.read().strip()

return VERSION
def get(self):
self.write({{'version': self.version}})

0 comments on commit 538dc24

Please sign in to comment.