how to build a development version using Sphinx Read the Docs theme - python-sphinx

I was wondering how to build a development version rather than the latest version using Sphinx Read the Docs theme. Is there any place I can put like "development" indicating that it is a development version?

Take a look at how we do this for Pyramid. Development is on the master branch, and released versions are on numbered branches, e.g., 1.10-branch.
You also need to configure RTD to support multiple versions of your docs. In Pyramid, we point latest at the latest released version, not the development or master branch.

Related

Download offline ElasticSearch documentation for older versions

How can I download the user docs/documentation/manual for older ElasticSearch for offline usage?
Recently, the online documentation for older versions of ElasticSearch (for example, ElasticSearch 1.3.2) started to show this message:
WARNING: Version 1.3 of Elasticsearch has passed its EOL date.
This documentation is no longer being maintained and may be removed. If you are running this version, we strongly advise you to upgrade. For the latest information, see the current release documentation.
What worries me most is the may be removed part. Right now, we don't have the resources to upgrade our software to support the latest ElasticSearch version, so we will need to keep working with the older versions for a while. How I will be able to give maintenance to our software if the Elastic company decides to remove the documentation for older versions of ElasticSearch? There is any way to download it from https://www.elastic.co/ or build it from some repository?
Thank you very much for your help!
You can clone the official elasticsearch repository to a local machine, change to branch to the version you want, in your cause branch 1.3, then you will have the documentation in the directory docs.
The documentation is in the .asciidoc format, you can try build it following the official instructions, or using other asciidoc to pdf/html converters.

How to version & publish snapshot/not-finished work on a go module?

I'm new in Golang, and I'm trying to develop a go-module and share it with my colleagues while I'm developing it; In JVM/sbt I used to publish my work with a 'SNAPSHOT' postfixed to version value. but How I can achieve the same in with go-modules?
Versions for modules are tagged by using repo tags (e.g. git tag), following semantic versioning (https://semver.org/).
So, any version starting with v0 is treated as unstable and may make breaking changes at any time. Once you release a v1, you cannot make any breaking changes without bumping your major version, which also means you change your module name.
You also have the option of appending +foo to the end of your version to indicate additional information about the version.
I wrote https://blog.golang.org/using-go-modules as an overview of how to get started using modules.

can I use master libpq in production

Is it ok to use the master branch of lib/pq in production?
When you execute go get gitlab.com/lib/pq you get the master branch, but there is a release v1.0.0.
Would it be better to use releases instead of master branch?
lib/pq
Releases
v1.0.0
Initial tagged release. No major recent changes.
Merge pull request #778 from lib/go-mod
add a go.mod file in preparation for a tagged release
lib/pq v1.0.0 adds support for Go versioned modules.
For Go1.12, consider upgrading your production code for Go versioned modules.
The first beta release of Go 1.12 is scheduled for this week (Dec, 3, 2018).
Go 1.11 Release Notes
Modules, package versioning, and dependency management
Go 1.11 adds preliminary support for a new concept called “modules,”
an alternative to GOPATH with integrated support for versioning and
package distribution. Using modules, developers are no longer confined
to working inside GOPATH, version dependency information is explicit
yet lightweight, and builds are more reliable and reproducible.
Module support is considered experimental. Details are likely to
change in response to feedback from Go 1.11 users, and we have more
tools planned. Although the details of module support may change,
projects that convert to modules using Go 1.11 will continue to work
with Go 1.12 and later. If you encounter bugs using modules, please
file issues so we can fix them. For more information, see the go
command documentation.
Proposal: Versioned Go Modules
Go 1.11 Modules.

what is the difference between laravel master and 5.0?

I am new to Laravel Framework and I wanted to know what is the difference between the Master and 5.0 (can be found at the documentation page).
Thank you.
The 5.0 branch is the current stable release all bugfixes and patches go to this branch and that's the one you should use. (it is also the one composer will use when you create a new project).
The master branch contains the upcoming release. In this case 5.1. However it could be unstable or suddenly break features because things will change in the new release.

What is the recommended stable version of SlickGrid to use for deployment

Is there a stable version of SlickGrid that should be used for deployment or is it recommended practice to take a snapshot of the github repository and use that for deployment? I see a number of tags but none that is very recent (e.g., tag 2.02 is 7 months old and there have been lots of commits since then).
Up to now I have been tracking the SlickGrid github repository for development but I'd like to fix to a version before deploying. It would be nice if there was a recommended stable package download available (maybe there is and I haven't come across it?).
SlickGrid 2.1 is available as a release on github - official mailing list announcement here.

Resources