Does the cppunit test frame have different version? if yes, then what is the latest version of it? - c++

Does the cppunit test frame have different version? if yes, then what is the latest version of it?

Yes. The most recent version is 1.12.1.
The project page is at http://sourceforge.net/projects/cppunit/

The latest tagged version is 1.13.2 according to the project's wikipedia entry.
The most recent version is available at https://freedesktop.org/wiki/Software/cppunit/. The development branch is actively updated. Version 1.13.2 was finalized on 2013-11-11.

Related

Can i update libpqxx, can i upgrade or do i need to flash my computer to reinstall a newer version?

I have checked out and built version 6.4 of libpqxx from https://github.com/jtv/libpqxx, how can i now install versoin 7.1.1? Can i remove the current version and how?
Can i have both versions installed, and how do i specify which one when linking in a compiler command?
I tried to read the docs, but could not get any info i could use.
Or, do i need to flasch my BeagleBoneBlack and reinstall everything from scratch?

How do I install an older version of Crystal Lang?

The documentation explains how to install the newest version, but I need a specific (older) version. Could someone help me with the best way to accomplish that?
The official deb & rpm repositories don't provide the previous Crystal releases. We know we want to improve that at some point in time, but it's not happening yet.
If you're on macOS/using Homebrew, you can try installing a Homebrew formula's old version. There might be a similar procedure in Linuxbrew. And I'm not sure about Arch's situation.
Official Docker images go as far as 0.13, in case that helps.
And you can always install Crystal from a .tar.gz published on the repository's Releases page. Just pick the version you prefer instead of the latest.
Don't forget that, the older the Crystal version, the less supported it'll be.

Jython 3 stable version

What is the latest stable version of Jython? I prefer a new version hopefully v3.x
Is it still recommended to use Jython 2.7.0 Final Released (May 2015)
What is Jython 3 sandbox? Is this a official/recommended one?
In Wikipedia it says about v.2.7.1 released in July 2017. Where can I download this version? (if this is the recommended latest one)
Use this link to download the 2.7.1 version:
You should definitely NOT use the newcomers which aren't stable for production purposes. You can follow guys from their dev team for all info regarding releases.

Current Cygwin version is not supported by Clion, how to install an earlier version of it?

I am trying to get my Clion 1.1.1 to work with Cygwin. I've installed Cygwin using its setup-x86_64.exe installer. but when I set Cygwin path in Clion's toolchains dialog, it says:
Environment: Cygwin; current version is 2.2.1; supported version range is 1.7.32-2.0.x
On the Cygwin website there is a snapshots page, in which packages are sorted by date (not version) and in faq page it says:
If you are looking for the version number for the whole Cygwin release, there is none. Each package in the Cygwin release has its own version.
So, if there is no version number for whole Cygwin release, what is Clion complaining about?
and if there is, how can I install an earlier version?
afaik, you'll either need an older installer (and some luck on the repos) or someone's older package directory and installer. All recent installers only go back one release which won't be enough to get you back in line with Clion's requirement.
Might also be worth reaching out to Clion and asking them when support for the recent versions is coming out.

Upgrade ember-precompile without rails or grunt

I am writing an ember app, and not using rails nor grunt for anything. I previously had a short python program that took text files and did some markdown stuff with them, and then compiled them all to a templates.js file using ember-precompile:
ember-precompile templates/*.hbs -f templates/templates.js
This worked great until I upgraded ember, and now I'm getting this error.
Uncaught Template was precompiled with an older version of Handlebars than the current runtime.
Please update your precompiler to a newer version (>= 1.0.0) or downgrade your runtime to an older version (== 1.0.0-rc.3).
I need to upgrade my ember-precompile program, but solutions like changing a grunt config or changing gemfiles are no good for me, since I'm not using either of those tools.
Also, attempts to upgrade or reinstall haven't made any changes at all.
Ember version Version: v1.0.0
Last commit: e2ea0cf (2013-08-31 23:47:39 -0700)
Handlebars version Handlebars.VERSION = "1.0.0";
Feel free to fill in any gaps in my understanding. For short term development purposes I'm just going to put my templates in index.html but I want to do markdown stuff to my templates first, so that won't do forever.
You would need to recompile your handlebar files using the latest ember-precompile version that matches the run time version. Basically, ember-precompile that you are using is older version but you are currently running the newer version of ember. That is what the compliant is about.
Turns out I just needed to learn the magic of github and npm and download a non "release" version of the program and install it. Pretty stupid of me really.
If anyone in the future has this problem, just check out npm install and get one of the fixed versions from github in a zip file or whatever suits you.