Skip to content

Commit

Permalink
NXDRIVE-1041: Release 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BoboTiG authored Dec 4, 2017
1 parent a55453d commit f02a364
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ These are common installation actions, not depending on the package manager:
pip install -r https://raw.github.com/nuxeo/nuxeo-drive/$DRIVE_VERSION/requirements-unix.txt
pip install git+https://github.com/nuxeo/nuxeo-drive.git@$DRIVE_VERSION

Check that `~/.local/bin` is in the `PATH` and then you can start Drive by typing `ndrive` in a terminal.

### macOS and Windows Desktop Clients

Expand Down Expand Up @@ -121,7 +122,7 @@ To easily manage all dependencies and packaging steps, we created several Jenkin

The desktop synchronization client can also be operated from the command-line:

1. Make sure that the `ndrive` program is installed in a folder that has been added to the `PATH` enviroment variable of your OS.
1. Make sure that the `ndrive` program is installed in a folder that has been added to the `PATH` enviroment variable of your OS (on Unix like, it may be `~/.local/bin`).

* You can check by typing the `ndrive --help` command in a console.

Expand Down
4 changes: 4 additions & 0 deletions docs/changes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# dev
Release date: `2017-??-??`


# 3.0.0
Release date: `2017-12-04`

### Core
- [NXDRIVE-748](https://jira.nuxeo.com/browse/NXDRIVE-748): RemoteWatcher polling now uses timestamp instead of counter
- [NXDRIVE-968](https://jira.nuxeo.com/browse/NXDRIVE-968): Improve logs disk space usage (set level to DEBUG)
Expand Down
3 changes: 2 additions & 1 deletion docs/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ You will also need to install the Qt4 qmake tool and the Qt4 library:

## Windows

PowerShell **4.0** or above is required to run this script. You can find installation instructions [here](https://docs.microsoft.com/en-us/powershell/scripting/setup/installing-windows-powershell).

### Usage

powershell .\tools\windows\deploy_jenkins_slave.ps1 [ARG]
Expand Down Expand Up @@ -98,7 +100,6 @@ If an envar is specifying a version, this means that the specified version of th
test_local_client.py::TestLocalClient (a whole class)
test_local_client.py::TestLocalClient::test_make_documents (only one method)
```
- `REPORT_PATH` is the absolute path to a directory where to store the generated report in case of failure, i.e. `$WORKSPACE`.

#### GNU/Linux specific

Expand Down
3 changes: 3 additions & 0 deletions docs/technical_changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
[//]: # (Note 3: keywords ordered [Added, Changed, Moved, Removed])

# dev


# 3.0.0
- Removed `options` keyword from `Application.__init__()`. Use `Options` instead.
- Removed `ignored_prefixes` keyword from `BaseAutomationClient.__init__()`. Use `Options.ignored_prefixes` instead.
- Removed `ignored_suffixes` keyword from `BaseAutomationClient.__init__()`. Use `Options.ignored_suffixes` instead.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def get_install_dir(self):
return os.path.join(self.get_author(), 'Drive')

def get_author_email(self):
return 'contact@nuxeo.com'
return 'maintainers-python+drive@nuxeo.com'

def get_url(self):
return 'https://github.com/nuxeo/nuxeo-drive'
Expand Down

0 comments on commit f02a364

Please sign in to comment.